Jump to content

Maq

Administrators
  • Posts

    9,363
  • Joined

  • Last visited

  • Days Won

    3

Everything posted by Maq

  1. Good idea. CSS is a much better approach
  2. Do you have any code we can see?
  3. You need to keep concatenating the message. $message .= "the rest of your HTML";
  4. "in" & "out" are reserved MySQL words. You should always try to avoid naming columns after these words. You either need to rename your column names and change your queries OR put backtics around the tables names wherever you use these reserved words. http://dev.mysql.com/doc/refman/5.1/en/reserved-words.html
  5. Click on the "Miscellaneous" section and do a search for "Book". See what other people are recommending and learning from.
  6. In the future, please use tags around your code.
  7. This topic has been moved to PHP Coding Help. http://www.phpfreaks.com/forums/index.php?topic=329581.0
  8. Hi and welcome. You don't have to worry about that
  9. Right. Depending on what you want to do, pagination might be a better option. Here is a nice tutorial: http://www.phpfreaks.com/tutorial/basic-pagination
  10. You will need to use the modulus operator. Check out: http://betaprogrammer.com/content/?p=336
  11. Actually, there are quite a few.
  12. Moving to SQL section.
  13. This topic has been moved to MySQL Help. http://www.phpfreaks.com/forums/index.php?topic=329559.0
  14. Hi Steve and welcome to PHPFreaks.
  15. FZ has been mentioned probably 10 times so far.
  16. I meant that when you post code on the forums put tags around it. This doesn't have anything to do with your problem, sorry.
  17. Sorry, I meant do something like this: $sql = "SELECT * FROM Registration WHERE eventid='".$_GET["eventid"]."' LIMIT 1"; echo $sql; $result = mysql_query($sql) or die(mysql_error()); while($row = mysql_fetch_array($result)){
  18. You need to use the localhost way so Apache can handle your files. Good.
  19. Here's a prank that became reality - http://www.popsci.com/technology/article/2011-04/kinect-hack-makes-gmail-motion-reality
  20. How are you loading your files? Post the "URL".
  21. In the future, please use tags around your code.
  22. Output $location2 and see if the image resides in that directory.
  23. These lines should be: $row4 = mysql_fetch_assoc($avatar2); $location2 = $row4['users.imagelocation'];
×
×
  • 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.