Jump to content

revraz

Members
  • Posts

    6,911
  • Joined

  • Last visited

    Never

Everything posted by revraz

  1. Just pull it the same way you're pulling the name. Post your code.
  2. See if you can figure out what is truncating it. Echo your variables after you sanitize them and before your Insert statement.
  3. Need to explain what doesn't work better. Errors? What isn't working? What is it doing? What isn't it doing?
  4. INSERT statements don't use WHERE clauses. If it was a column error, it would return as such.
  5. Simpler? Looks pretty simple as is, how much simpler do you want it?
  6. Try using UPDATE like: UPDATE table_reference SET col_name1={expr1|DEFAULT} [, col_name2={expr2|DEFAULT}] ... [WHERE where_condition]
  7. Post the exact error with the line number
  8. Then maybe access is really denied. Did you confirm rights?
  9. Not sure what you mean by the middle of other code. Are you talking about includes? You can put echo breaks where ever you want.
  10. Why do you have the . concantenate at the end?
  11. Where are you checking to see if they are logged in?
  12. http://www.php.net/manual/en/function.substr.php
  13. A session is just like any other variable, you store it the same way. What part exactly do you need help with?
  14. You need to state which table the field name is from, ie.. animel1.animeid
  15. Frist off, md5 is a hash and not encryption. Second, why are you only reading in the first 6 chars of the md5 hash? Third, post the code where you write the hash to the pw field in the database.
  16. If you are asking if you can do addition and multiplication in MySql, then the answer is yes.
  17. What does the date look like in the table itself? Looks like it's returning 0. Also, how are you getting $phpdate?
  18. Provide the path of the script that you run that calls the included file. Provide the path to the included file.
  19. revraz

    PHP notice

    It's telling you that your variables are not defined when it first runs. What you want to do with that is up to you.
×
×
  • 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.