Jump to content

trq

Staff Alumni
  • Posts

    30,999
  • Joined

  • Last visited

  • Days Won

    26

Everything posted by trq

  1. This topic has been moved to Ajax Help. http://www.phpfreaks.com/forums/index.php?topic=346932.0
  2. This topic has been moved to mod_rewrite. http://www.phpfreaks.com/forums/index.php?topic=346901.0
  3. This topic has been moved to Third Party PHP Scripts. http://www.phpfreaks.com/forums/index.php?topic=346934.0
  4. If your trying to hide the port you would need to use some sort of url mask. that's not what dyndns is for though. I misread your post I think.
  5. Your not calling the a() function anywhere.
  6. Without a valid schema there are no rules to validate against.
  7. Before checking anything with [mysql_num_rows[/m] you should check your query actually succeeded. The general syntax is: if ($result = mysql_query($sql)) { if (mysql_num_rows($result)) { // $result contains data, use it } else { // no records found } } else { // query failed }
  8. Have you tired anything or your just looking for someone to do it for you?
  9. It's Linux not Lenux. It's a popular operating system. See here: http://kevin.vanzonneveld.net/techblog/article/schedule_tasks_on_linux_using_crontab for an introduction to cron.
  10. This topic has been moved to Other Web Server Software. http://www.phpfreaks.com/forums/index.php?topic=346879.0
  11. It's Linux not Lenux. It's an operating system. If you have a question about cron, open another topic in the 'Other Server Software' board.
  12. This topic has been moved to PHP Coding Help. http://www.phpfreaks.com/forums/index.php?topic=346862.0
  13. Generally php is used to output data stored in a database in nicely formatted HTML. Outputting it to XML is no different. Where exactly are you stuck? Post your code.
  14. Take a look at the mysql_fetch_assoc examples.
  15. Both Twitter & LinkedIn have documentation available on there sites for developers. Have you looked at any of this?
  16. This topic has been moved to Other Programming Languages. http://www.phpfreaks.com/forums/index.php?topic=346832.0
  17. Not necessarily, they could quite easily execute a Linux live CD and mount the drives from there.
  18. trq

    MOVED: OCR

    This topic has been moved to Miscellaneous. http://www.phpfreaks.com/forums/index.php?topic=346829.0
  19. The idea of creating php files on the fly wreaks of bad design. Can you explain in detail why you would be doing this?
  20. This topic has been moved to Other Libraries and Frameworks. http://www.phpfreaks.com/forums/index.php?topic=346821.0
  21. This topic has been moved to Application Design. http://www.phpfreaks.com/forums/index.php?topic=346818.0
  22. This topic has been moved to Miscellaneous. http://www.phpfreaks.com/forums/index.php?topic=346801.0
  23. I would use simplexml_load_file to load the file into an object, then from that object create HTML which could be formatted however you want.
×
×
  • 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.