Jump to content

Maq

Administrators
  • Posts

    9,363
  • Joined

  • Last visited

  • Days Won

    3

Everything posted by Maq

  1. This topic has been moved to Miscellaneous. http://www.phpfreaks.com/forums/index.php?topic=353298.0
  2. Can we see an example? How is this PHP related?
  3. Congrats kicken!
  4. In the future, please place OR tags around your code.
  5. You might want to check to see if that POST is set and display feedback appropriately. At least you know what's wrong. If this is resolved please mark as solved.
  6. Are you positive your query is correct (print it out)? Does that record actually exist? Have you debugged by printing out potential sql errors? (http://php.net/manual/en/mysqli.error.php)
  7. NaniG, in the future, please place OR tags around your code.
  8. So what's the problem exactly? Just use and IF statement. http://php.net/manual/en/control-structures.elseif.php
  9. It's called a ternary operator. Search for it here: http://php.net/manual/en/language.operators.comparison.php
  10. I don't think I contributed but good job!
  11. This topic has been moved to Miscellaneous. http://www.phpfreaks.com/forums/index.php?topic=352847.0
  12. A day is never 145440 seconds, it is 86400 seconds. That's what I get for posting before I have my coffee. Where did that number come from? Seriously. 1.68 days
  13. Again, where is "$chpwdcheckres" being defined?
  14. Is your table really called 'table'? Don't use it, it's a reserved word: http://dev.mysql.com/doc/refman/5.5/en/reserved-words.html
  15. Where is "$chpwdcheckres" being defined? The error you're getting is usually caused by invalid SQL syntax.
  16. Something else that might help - most IDEs have a reference search that allows you to find where the method is called anywhere in your project/workspace. (In eclipse, double click the method and hit ctl+shft+G)
  17. hi and welcome to phpf
  18. Used to be funny, I guess it still gives me a nostalgic smile.
  19. @Reddevil07utd, if you're looking to freelance someone I can move this to the "Freelance section". If not, post the errors, pertinent code, and what's happening and we can help.
  20. Hi Marcelo, welcome!
  21. I would imagine the VBulletin forums would have an entire section for anti-spam.
  22. Ha, yeah I saw that article earlier.
  23. No, actually this would be the perfect excuse not to do it
  24. 1) MySQL is case-sensitive, so your simple query would be "SELECT * FROM Employees". 2) Looks like your query is failing. Use mysql_error() in your PHP code to figure out exactly what is causing it. From a glance, you're missing a starting single quote here: BETWEEN 2011/01/01'
  25. This topic has been moved to Apache HTTP Server. http://www.phpfreaks.com/forums/index.php?topic=351923.0
×
×
  • 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.