Jump to content

Maq

Administrators
  • Posts

    9,363
  • Joined

  • Last visited

  • Days Won

    3

Everything posted by Maq

  1. 1. Be conscious where you start topics. This is the wrong section, moving to PHP Coding Help. 2. When you ask a question, you need to provide pertinent information (errors, what happens, doesn't happen, etc.). 3. Post the relevant/problematic code. You will receive less help with code/file attachments.
  2. I was going to point that out but on my system (mysql 5.5.29) it doesn't complain about the space after the RAND, only for COUNT.
  3. Maq

    Hey

    Hi, welcome to the community. The head-first series are usually a pretty good start.
  4. Maq

    Well Hello

    Hi and welcome to the community.
  5. Line #173 - You have what looks to be a misplaced "" there.
  6. No. That sort of development process omits one of the main benefits of working locally, having developers customize & optimize their own development environments. It depends on what the needs are. They may accomplish the same end goal, but their implementations and usage are different.
  7. Before you go and start modifying php.ini settings (which are there for a reason) you should probably profile your code and see what's actually exhausting the max timeout.
  8. cabbie, please be conscious of what section you are posting in, this is the wrong one. Moving to PHP Help.
  9. Yes, from the manual - http://php.net/manual/en/language.operators.string.php
  10. To my knowledge MySQL DOES NOT keep a log of deletions by default. If you don't have a backup then I'm afraid those records are gone.
  11. mysql_select_db() takes a String not a constant. If that doesn't work tell us what happens, errors, etc.
  12. http://api.jquery.com/jQuery.ajax/
  13. We need more information. What happens? Are there errors? Do you have error reporting turned on?
  14. Can you manually connect via command line?
  15. ^ Pretty much what jesi said. How is this being submitted? I would turn on a debugging tool that shows you network requests to see what's going on.
  16. Post what you have already.
  17. You can check in /var/log/apache2. You can also look in your php.ini file to and check the value of "error_log". If you don't have access to either, try printing out phpinfo(); and look for the value.
  18. Check the error logs? Did something change? Blank pages are usually an indication of a fatal error not being handled properly.
  19. You need to post this in the beta testing section: http://forums.phpfreaks.com/forum/46-beta-test-your-stuff/ Be sure to read this before posting there: http://forums.phpfreaks.com/topic/139330-rules-must-read-before-posting/
  20. Your query is invalid: SELECT * FROM '%stocktable%' WHERE 1 What exactly are you trying to do?
  21. Use a decent IDE that automatically imports only the used classes, then .* is longer longer a concern.
×
×
  • 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.