Jump to content

trq

Staff Alumni
  • Posts

    30,999
  • Joined

  • Last visited

  • Days Won

    26

Everything posted by trq

  1. Like I said, you still need to know how to program.
  2. trq

    MOVED: join in JDBC

    This topic has been moved to Other Programming Languages. http://www.phpfreaks.com/forums/index.php?topic=348906.0
  3. This topic has been moved to Apache HTTP Server. http://www.phpfreaks.com/forums/index.php?topic=348893.0
  4. a1) See strtolower & str_replace. a2) No.
  5. This topic has been moved to Ajax Help. http://www.phpfreaks.com/forums/index.php?topic=348858.0
  6. Iv'e not used Ajax to upload a file, but I'm sure there would be plenty of tutorials around on the subject.
  7. To send an image you would need to upload it. You cannot simply send a DOM node to php.
  8. Hard to tell from that simple example but it doesn't really look like tabular data. Tables should only be used for tabular data.
  9. case "Twitter": if ($member['top'] == 1) { echo "Twitter Gadget will show here"; } break;
  10. isset returns the bools either true or false, it will NEVER equal the string 'All'. if ((isset($select_category) && $select_category == 'All') || (!isset($select_category) && !isset($most_liked)) {
  11. This topic has been moved to JavaScript Help. http://www.phpfreaks.com/forums/index.php?topic=348848.0
  12. onClick is a client side browser event. PHP runs on the server.
  13. This topic has been moved to Third Party PHP Scripts. http://www.phpfreaks.com/forums/index.php?topic=348839.0
  14. Thats' 3 questions, most of which are pretty hard to answer. 1) This question has been asked many, many times. There is no "best" framework. 2) While frameworks help, you still need to know how to program. 3) See 2.
  15. You can just about forget about doc files. They are a proprietary format that is (like most proprietary stuff) hard to work with.
  16. This topic has been moved to mod_rewrite. http://www.phpfreaks.com/forums/index.php?topic=348849.0
  17. You need to make your code produce the more SEO friendly one, then mod-rewrite maps it through to the original. If you making the SEO type links and they are being redirected to the older style, there is something wrong with your rewrite rule.
  18. This topic has been moved to Miscellaneous. http://www.phpfreaks.com/forums/index.php?topic=348851.0
  19. Sounds a bit specific. If you know how to write php and how to think a problem through, you shouldn't really need any tutorials.
  20. This topic has been moved to Other Web Server Software. http://www.phpfreaks.com/forums/index.php?topic=348171.0
  21. Then why does it extend the CI_Controller ?
  22. Where it is located is different depending on how Apache has been configured but you can put them wherever you like. Within your main httpd.conf file just place something like: Include /etc/apache2/vhosts.d/*.conf You can then create vhost.conf files within /etc/apache2/vhosts.d/ and they will be included into the main configuration. Using this method however you need to restart Apache every time you add a new vhost. Look in the manual for "mass virtual hosting" for an approach that allows you to add hosts dynamically without the need for restarting.
×
×
  • 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.