Quote:
Originally Posted by Mark
Glad you got it working. Don't forget to sanitize any variables you are putting into an SQL string:
PHP Code:
$userName = mysql_real_escape_string($_POST['userName']);
password doesn't need it since you are md5ing it.
|
And that just saved me a lot of coding, as I sanitized the Vars with my own convoluted and "dirty coded" functions.
And
that is why I am growing to love this place already.