Jump to content

Daniel0

Staff Alumni
  • Posts

    11,885
  • Joined

  • Last visited

Everything posted by Daniel0

  1. Just click at the profile tab.
  2. PS3 since I got a PS2. I would like to be able to still play my PS2 games. I know I could just have more another one, but I don't want to.
  3. [code]<?php if($_POST['name'] == 'Your name' || empty($_POST['name']) { echo "Please enter your name"; } else { // do stuff } ?>[/code]
  4. Sorry, if you need help then you must post in one of the help forums.
  5. You might want to checkout the PHP manual on heredoc: http://dk.php.net/manual/en/language.types.string.php
  6. What is not working? It looks fine for me.
  7. Something like this should do it (I know it is ugly): [code]<?xml version="1.0" encoding="utf-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US" lang="en-US"> <head> <title>Test</title> <style type="text/css"> ul { background-color: blue; } ul ul { background-color: green; } ul ul ul { background-color: red; } ul ul ul ul { background-color: yellow; } </style> </head> <body> <ul> <li> test </li> <li> test </li> <li> <ul> <li>test</li> <li>test</li> <li> <ul> <li>test</li> <li>test</li> <li> <ul> <li>test</li> <li>test</li> </ul> </li> </ul> </li> </ul> </li> </ul> </body> </html>[/code] You just need to style it better though.
  8. I began to read it a while ago, but I got bored and stopped half-way.
  9. It do not necessarily have to be in more than one page. It could be hidden, and then the 'Enter more details'-button would show the rest of the form using javascript.
  10. FF 1.5.0.6 on Linux.
  11. I think you should choose another font for the testimonails box. And [url=http://validator.w3.org/check?uri=http%3A%2F%2Fwww.billiardbuyer.com%2Fwip%2F]validate your code[/url].
  12. 1) [i]No text that moves!!![/i] 2) Choose another font. 3) The "forum information"-box is positioned a wierd place. 4) The menu needs some work, the black background on it do not look nice. 5) Do not use images to show text. Think about the poor blind people using screen readers. [b]Edit:[/b] 6) Use valid HTML (XHTML would be even better): http://validator.w3.org/check?uri=http%3A%2F%2Fwww.runnerselite.com%2F 7) Use valid CSS: http://jigsaw.w3.org/css-validator/validator?uri=http%3A%2F%2Fwww.runnerselite.com%2F&usermedium=all
  13. Your form fields are too wide: [URL=http://img76.imageshack.us/my.php?image=screenshot11dl0.png][IMG]http://img76.imageshack.us/img76/3972/screenshot11dl0.th.png[/img][/URL]
  14. Make sure your HTML validates: http://validator.w3.org/check?uri=http%3A%2F%2Fwww.tingram.ca%2F 32 errors when I validated it.
  15. [quote author=underparnv link=topic=102921.msg436566#msg436566 date=1158592753] Also, how do you figure that users with lower screen resolutions can't see my site?  It looks perfect in 800x600...do I need to go any lower? [/quote] Well, on very low screen resolutions you can view it, but it is kind of annoying having to scroll to the side, so if you use percentages instead of pixels the layout will fit according to the user's screen resolution. [quote author=underparnv link=topic=102921.msg436566#msg436566 date=1158592753] What do you feel is missing on the "The Sporting Edge" portion of the second design? [/quote] I am not sure. A logo perhaps?
  16. I do not know why, but the logo looks kind of wierd to me. When hovering over the links in the menu, I think you should make it change the background color, instead of just underline it.
  17. I do not think you can start a variable with a number.
  18. [quote author=Crayon Violent link=topic=108547.msg437308#msg437308 date=1158682021] Also I have to kind of wonder why your registration process is taking more than one page to begin with? I personally think that ideally, a registeration script should be no more than one page to begin with.  Get the vitals, and that's it.  Anything else should be on some other "account preferences, settings, optional info, etc.." page after the user is registered and logged in and looking at their acct. info.  I guess that's just me. [/quote] You could have two buttons. One saying 'Finish registration' and another one saying 'Enter more details'.
  19. They can't see the actual source of the script. It's not true that they don't like webpages with databases. They can [i]only[/i] see what you see if you view the HTML source after it has been interpreted by PHP.
  20. Switches or similar thing. I like eg: index.php?page=register index.php?page=login over register.php login.php
  21. Yeah, it's because you try to include a file on the filesystem that is actually called "find.php?team=1&subject=2000", but there is not a file called that. When you type the url you tell the server to load "find.php", which exists, then the rest is parsed as GET variables. If you want the output of of what you include, then just do this: [code]<?php echo file_get_contents("http://www.mysite.com/find.php?team={$team}&subject={$subject}"); ?>[/code] or if you want to include the file, but have some variables set, then just set the variables before and then include find.php
  22. See this topic: http://www.phpfreaks.com/forums/index.php/topic,108461.0.html
  23. Try [code]<?php echo $mem_id; ?>[/code] instead of [code]<?=$mem_id?>[/code]
  24. Daniel0

    MMT

    Both of them look really great. I can't decide which one is better however.
  25. 1) Make the username field as wide a the password field. 2) I don't like the button saying that it's valid XHTML Strict when it's not (it found 1 error when I validated it). 3) The same goes for the CSS (6 errors). 4) Use percentages instead of pixels. Users with low screen resolutions can't view it. [b]Edit:[/b] That was for the first layout. Layout two (the posted screenshot): It feels like there is something missing where it says "The Sporting Edge".
×
×
  • 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.