What's faster/better to use MYSQL md5 FUNCTION or run md5 php function ?
- by haim evgi
i check password of users against the db.
what is faster check it in mysql MD5 function
... pwd = MD5('.$pwd.')
OR in PHP
... pwd = '.md5($pwd).'
or what is The Right Way Between two options ?
thanks