Ok, here we go once again:
You have an error in your SQL syntax near 'VALUES ('', 'wes', md5('theman')' at line 1
The problem there is there is no md5() command in MySQL. Your SQL syntax needs to read like this instead:
PHP:<?php
INSERT INTO blah_table VALUES ('', 'wes', '".md5('theman')."';
?>
What I did there is I md5()'d the text BEFORE I placed it in the MySQL query. That works.
___________________
Adam Goossens -- PHP is my mother tounge.
Linux: ( kernel.org | winehq ) -- f33l the p0w3r.
Nobody replying to your questions? Getting flamed? Getting told to RTFM? Ask your questions the right way.

