Jump to content

revraz

Members
  • Posts

    6,911
  • Joined

  • Last visited

    Never

Everything posted by revraz

  1. You should only have to do a IF statement to see if Submit was pressed, if so, show the results, if not, then don't.
  2. You could store the URL in a database, so the link actually points to the DB and not the actual file.
  3. You need to enter a timestamp when they sub someone, then you can query all rows within the last hour, compare that result to 30.
  4. Sounds like poor database design to me actually. Fix that problem and it will solve this one. Why are you comparing description and not IDs?
  5. You are putting your $message variable before you set your $email and $password variables $message = "Dear client,\n your access details are:\n Usr Name:$email \n Password:$password"; <---Move this after the two below $email = $row_user_data_RS['cliente_email']; $password = $row_user_data_RS['cliente_password'];
  6. http://php.net/manual/en/function.mail.php
  7. We cant read it like that.
  8. You want to use OR not AND.
  9. How are you populating the $gold variable? Post all the code.
  10. Sounds like you should be seeking support from the person that made the script or the 3rd party script forum.
  11. So what is the actual problem? Code looks fine.
  12. Use mysql_error after your query to see why. Echo your query to see if your variables are populated. Remove the Limit 1. Remove the comma after '$newp'
  13. Error says it all, Access Denied for the user id/pw you are using to perform that action on the DB.
  14. Possible you ran into a reserved word for MySQL. Use backticks around your column names, ie `name`, `url`, etc
  15. Did you remove the quotes to see what the answer would be? Did you really echo $b?
  16. Use good code practice and sanitize all data before it goes into the database.
  17. Have your hash code? Use a salt.
  18. Neither is Encryption, it's a hash and nothing more. What types of problems did you have? If you explain that, we can probably solve your issue.
  19. May want to try the freelance section.
  20. Which one is gary.php?
  21. Why not use a session variable?
  22. So are you saying you don't want to INSERT 80 into STATUS_ID field unless a checkbox is checked? Else enter 60?
×
×
  • 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.