Jump to content

trq

Staff Alumni
  • Posts

    30,999
  • Joined

  • Last visited

  • Days Won

    26

Everything posted by trq

  1. The first annoyance I have is if your scroll down and click on 'Wyoming' for instance, you are taken back to the top of the page and have to scroll down to Wyoming again to put your post code in.
  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. I'm not sure it has the ability to return false. The manual states, returns 1 always.
  4. 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.
  5. These lines make no sense.... elseif($variable <= $OneBracket12 && >= $OneBracket1): Should be..... elseif($variable <= $OneBracket12 && $variable >= $OneBracket1):
  6. 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.
  7. This topic has been moved to Miscellaneous. http://www.phpfreaks.com/forums/index.php?topic=308543.0
  8. 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.
  9. This topic has been moved to MySQL Help. http://www.phpfreaks.com/forums/index.php?topic=308528.0
  10. $query = "SELECT * FROM `engines` WHERE name LIKE '$keyword%' AND (languages='au' OR language='en') ORDER BY hits DESC ";
  11. This topic has been moved to Third Party PHP Scripts. http://www.phpfreaks.com/forums/index.php?topic=308475.0
  12. I'm with AlexWD, use mysql's cli interface, it'll be allot simpler and more efficient.
  13. Getting the data you want through an actual query is always going to be faster than having php do the grunt work.
  14. Remove the () around your table name.
  15. Do not surround $newdbname in single quotes as advised by Vince889, post your code if the problem persists.
  16. You forgot to describe your actual problem.
  17. Look at the examples in the link I provided.
  18. You are surely aware of the valid address of the form posting to your processing script?
  19. 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.
×
×
  • 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.