RE: php and mysql help md5 hash...
If I get your question right, you need to use either $_GET['name'] or if you're sure there are no other variables called name and your server supports it, just $name
Don't forget to put quotes in the query. Your query will then be something like:
"SELECT real_name FROM ibs_md5image WHERE hash_name = '$_GET[name]'"
That help?
|