Jump to content

Maq

Administrators
  • Posts

    9,363
  • Joined

  • Last visited

  • Days Won

    3

Everything posted by Maq

  1. In the future, please place tags around your code.
  2. You need regular double quotes. echo "DONE!"; In the future, please place tags around your code.
  3. I would also browse over some job searching sites to see what kind of demand is near you.
  4. This topic has been moved to Third Party PHP Scripts. http://www.phpfreaks.com/forums/index.php?topic=333229.0
  5. Do you actually mean connecting to facebook or is "Facebook Connect" something else? Facebook Connect allows people to essentially 'join' your site with their Facebook login information. Can be a bit annoying to manage though. Oh yeah I know what you're talking about. Sorry, never used it before so I can't help.
  6. In the future, please place tags around your code.
  7. Post some code.
  8. https://www.torproject.org/docs/documentation.html.en
  9. @eminempk, as fenway mentioned, when posting code place tags around it.
  10. This topic has been moved to Miscellaneous. http://www.phpfreaks.com/forums/index.php?topic=333230.0
  11. Do you actually mean connecting to facebook or is "Facebook Connect" something else?
  12. Maq

    SYNTAX RAGE!

    If your table name actually contains space(s) (which it shouldn't) then you must put backtics around it `with codes`.
  13. 20/10? Whoa, that's crazy good.
  14. I took a quick look and didn't really know what to write. I think you need to do an entire design overhaul. Check out some other designs to gain inspiration.
  15. Pick something you want to learn and break it down into parts. A learning book is supposed to do that for you. Do you have reference books or something?
  16. @john_doews, the last reply to this thread (besides yours obviously) is from November 05, 2008. Please don't resurrect old threads and if you have a similar problem then you should start your own thread.
  17. Yes it was the wrong section (I move it). We have a sticky full of hosts: http://www.phpfreaks.com/forums/index.php?topic=117475.0
  18. This topic has been moved to MySQL Help. http://www.phpfreaks.com/forums/index.php?topic=333029.0
  19. 1) You should be sanitzing and preventing SQL injections with mysql_real_escape_string. $id = mysql_real_escape_string($_GET['id']); 2) You are probably receiving the error because the column ID probably is not of type integer. Which will require you to put single quotes around the value. $query = "SELECT * FROM site_content WHERE ID = '$id'"; (Note: Used the new $id variable and changed the primary string to double quotes while using singles around $id.)
  20. Thank you very much sir
  21. Well, it's prohibited to post files that large. So either link them to the download or email it to the personally.
  22. B/c space isn't free. I would really like to hear some valid reasons you're posting e-books on here.
  23. How big is the PDF file? There is a limit:
  24. Works for me. What happens? [attachment deleted by admin]
×
×
  • 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.