I have a couple of new problems concerning MySQL and PHP3..
First, is there a simple syntax to modify an entry? (ie:
MODIFY * from Users (col1, col2) VALUES(\"val1\", \"val2\") WHERE Username=\"user\"
or do I have to do a delete/insert?
Second. Right now, I\'m storing the passwords in the database as straight text. while I do have the SQL server locked off from the internet, if someone were to hack the site, they\'d have all the user passwords. Nasty security hole. Does anyone know a quick and dirty way to one way encrypt the passwords and then I could just compare the database entry to the encrypted user input?