Jump to content

tarun

Members
  • Posts

    321
  • Joined

  • Last visited

    Never

Everything posted by tarun

  1. Well Donnne. I Have Almost No Critisisim (<-- Is That How You Spell It :-\) Apartt Fromm. Moree Roundness And Curves.
  2. Ermm... A Bit Boring Maybe =S Try A Web 2.0 Look.
  3. When Hovering Over The Logo A White Background Appears. But I Think It Can Be Fixed Using CSS.
  4. tarun

    sodaDome

    ^ | | It Looks Normal In IE7.
  5. Snazzzzy This Design Is Generally Excellent Butt.. :-\ Apart From The Stuff Mentioned Above The Only Thing I Dont Like Is The Login Form (But That Is Just My PERSONAL Opinion). Maybe Trying Adding Some Style To The Text Fields & Login Button.
  6. Hmmm. The Website Will Not Load Now.. =S Firefox: "The connection has timed out The server at www.nemesiswar.net is taking too long to respond." IE: "Internet Explorer cannot display the webpage" I Also Tried Pinging The Website But It Returned "Request timed out." Every Time.
  7. Hmm. I Dont Like The Main Title; It Looks Tacky. Let Me Guess. It Was Made Using www.CoolText.com The Page Is Also Slow Loading. But That My Be Due To My Internet Connection. However, Well Done For Making The Site The Same In Firefox And IE
  8. Is it possible to jump to a certain line or location in a textarea tag. And if so can you provide an example.. thnx... Tarun
  9. I don't think you understand. But ifugured out the problem. It was the border around the divs.
  10. tarun

    class vs id

    Classes are for when you want to use the styling on 1 or more objects. IDs can only be used on one single object. More details can be found here: http://css-discuss.incutio.com/?page=ClassesVsIds
  11. Right, I have this 100% height layout but it isn't the whole height of the area avaiable its a maybe few pixel over. I have a included a 2 screen shots one is a real screen shot of what it looks like. The other is an edited version, which is what i want it to look like. Both layouts appear the same in IE an Firefox. Screenshots: Real screenshot of what I have now. Edited screenshot of what I aim to have/want. I have also provided the HTML Code <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" > <head> <title>...</title> <style type="text/css" media="screen"> body { margin: 0; padding: 0; height: 100%; } #left { position: absolute; left: 0; top: 0; padding: 0; width: 200px; height: 100%; color: #333; background: #eaeaea; border: 1px solid #333; } #content { position: absolute; left: 200px; top: 0; right: 0; padding: 0; height: 100%; color: #333; background: #ffc; border: 1px solid #333; overflow: scroll; } #left p { padding: 10px; } #content p { padding: 10px; } </style> </head> <body> <div id="left"> <p class="top">aopjfshkmal;hba ha</p> <p>aharijkuyjrawtrwh</p> <p>auetbvdfhiti7okl,hevd</p> </div> <div id="content"> <p>Tsetukuyskpf;ps'ra3w'lmrtefkdylatsururtyryrt.fok./owe sjheak, asiuflajrlk eaiojra.r arsfs eatheakra gaiojtnar atkajehtakn.trna</p> </div> </body> </html>
  12. Well I would like to create a 100% width and 100% height layout but im unsure as to how to do it. any ideas? I have also got a screen shot of the kind of thing im looking for. remember id like to have it Cross Browser compatible if possible Low Quality - 115.29 KB (0.11 MB) Click To Enlarge High Quality - 333.79 KB (0.33 MB) Click To Enlarge Thnx so much ;D
  13. Thanks Alot Guys "Trim" Did The Trick ;D ƬӨPiiC ƧӨLVΣD ;D
  14. Im working on some code which searches a line of a text file to see if it matches a GET variable but only the last line can be searched Filename: test.txt Tarun Patel AnotherEg. Test !! Random Filename: readline.php <?php $path = "test.txt"; $lines = file($path); $test = $_GET["test"]; foreach($lines as $num => $val) { if ($val == $test) { echo ">> "; } echo $lines[$num]; echo "<BR>\n"; } ?> The if statement only works for the last line of "test.txt" this is because it reads the line and the break after it Eg. Line 1 would be: "Tarun " Line 2: "Patel " ETC... But the last line would be: "Random" How do I cut out the break so it only reads: "Tarun" instead of "Tarun "
  15. Well I Can Answer The 3rd <?php $getlink = $_GET["link"]; if ($getlink == "page1") { echo "Hello This Is Page 1"; } elseif ($getlink == "page2") { echo "Welcome To Page 2"; } else { echo "Ooops! Page Not Found"; } ?> Try That And Just Keep Playing Around With It
  16. I Found This Code Which Simluates A Crontab Description: If you want to simulate a crontask you must call this script once and it will keep running forever (during server uptime) in the background while "doing something" every specified seconds (= $interval): <?php ignore_user_abort(); // run script in background set_time_limit(0); // run script forever $interval=60*15; // do every 15 minutes... do{ // add the script that has to be ran every 15 minutes here // ... sleep($interval); // wait 15 minutes }while(true); ?>
  17. Thanks Alot (Both Of You ) And Congratz GingerRobot Its An Honor
  18. <?php $menu["Home"] = "/index.php"; $submenu["Home"]["About"] = "/about.php"; $menu["Contact Us"] = "/contactus.php"; $submenu["Contact Us"]["Live Chat"] = "/chat/index.php"; $submenu["Contact Us"]["Live Chat"]["Live Help"] = "/chat/connected.php"; $submenu["Contact Us"]["Email"] = "/emailform.php"; $menu["Members"] = "/members/index.php"; $submenu["Members"]["Profile"] = "/members/profiles/index.php"; $submenu["Members"]["Profile"]["View Profile"] = "/members/profiles/viewprofile.php"; $submenu["Members"]["Profile"]["View All Profiles"] = "/members/profiles/viewall.php"; $submenu["Members"]["Profile"]["Edit Profile"] = "/members/profiles/edit.php"; $submenu["Members"]["Check Messages"] = "/members/mail.php"; $submenu["Members"]["Send A Message"] = "/members/send.php"; $submenu["Members"]["Edit Profile"] = "/members/editprofile.php"; ?> Well... Thats My Multi Dimensional Array How Would I Go About Making A Breadcrumb Menu From It In Case You Didn't No A Breadcrumb Menus Are Like This: [iurl=#]Members[/iurl] / [iurl=#]Profile[/iurl] / [iurl=#]Edit Profile[/iurl]
  19. Code Walkers Tutorial Title: Sending SMS Thru HTTP Description: Use PHP and the HTTP protocol to send text-messages from your website through an SMS gateway.
  20. Well... Its Not Actually Split The Lighter Colour Is A Layer Of Gloss...
  21. You No What To Do... Any Feedback (Wether Good Or Bad) Is Appreciated Low Quality - 71.63 KB (0.56 MB) Click To Enlarge High Quality - 210.21 KB (1.64 MB) Click To Enlarge NOTE: The Design Is Not Finished An Some Images Have Been Replace With Different Images (In The Screenshots Area - Next To The Sign Up Section)
  22. Oh... You Want Mod_Rewrite For That PHP Freaks Mod_Rewrite Board But Do You Think That Would Work
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.