Jump to content

trq

Staff Alumni
  • Posts

    30,999
  • Joined

  • Last visited

  • Days Won

    26

Everything posted by trq

  1. Use proper tags. <?php echo $_SESSION['item_description']; ?>
  2. There has got to be thousands of tutorials out there covering these exact subjects. Were not here to rite you your own personal one. Where exactly are you stuck?
  3. What is #clickme ?
  4. I'm not sure it has the ability to return false. The manual states, returns 1 always.
  5. trq

    fsockopen

    There is no way to monitor this remotely. You could continuously hit the port and record when, I wouldn't exactly call it reliable though.
  6. These lines make no sense.... elseif($variable <= $OneBracket12 && >= $OneBracket1): Should be..... elseif($variable <= $OneBracket12 && $variable >= $OneBracket1):
  7. set_error_handler
  8. The first thing you should learn programming php is that it is processed server-side. The best you could do would be to email a link to a page on your server.
  9. This topic has been moved to Miscellaneous. http://www.phpfreaks.com/forums/index.php?topic=308543.0
  10. You never did mention what OS your using, but if your just getting started your probably best off downloading a pre-configured bundle like Xampp (Google for it). This will install all the basic software you need. A web server (Apache) PHP A Database Server (MySQL) From there, theres a good book in my signature (Hudzilla) that should get you started.
  11. And the problem is?
  12. This topic has been moved to MySQL Help. http://www.phpfreaks.com/forums/index.php?topic=308528.0
  13. $query = "SELECT * FROM `engines` WHERE name LIKE '$keyword%' AND (languages='au' OR language='en') ORDER BY hits DESC ";
  14. This topic has been moved to Third Party PHP Scripts. http://www.phpfreaks.com/forums/index.php?topic=308475.0
  15. I'm with AlexWD, use mysql's cli interface, it'll be allot simpler and more efficient.
  16. Getting the data you want through an actual query is always going to be faster than having php do the grunt work.
  17. Remove the () around your table name.
  18. Do not surround $newdbname in single quotes as advised by Vince889, post your code if the problem persists.
  19. You forgot to describe your actual problem.
  20. Look at the examples in the link I provided.
  21. You are surely aware of the valid address of the form posting to your processing script?
  22. That makes no sense. There is no trick to making variables available from within included files. If they are within scope, they are available. The example you have posted should work fine.
  23. This topic has been moved to Third Party PHP Scripts. http://www.phpfreaks.com/forums/index.php?topic=308386.0
  24. I had this same issue with Adobe.com once. What ip range are you using for your local network? I found the 192.172.* range to be problematic because even though it is a valid private range, it is very close to some public ranges and adobe must have blocked this traffic for whatever reason. I can't really remember the complete issue now but I only use 10.1.* for internal networks these days.
×
×
  • 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.