I believe you would want to compare the encrypted password from the database to:
Code:
md5(md5($_POST['password']) . salt)
but since salt is a column in the database, I'm not sure you can do it all in the query (but of course you can just read the record for that username, then check the password).
You can look at function verify_authentication() in includes/functions_login.php if you want to see how vb checks the password.