This code don't accept name submitted with post method
This one accepts it
So i assumed problem is with
Can someone explain what's wrong?
PHP Code:
$clean['name'] = @mysql_real_escape_string(htmlentities(stripslashes($_POST['name'])));
PHP Code:
$clean['name'] = htmlentities(stripslashes($_POST['name']));
PHP Code:
@mysql_real_escape_string();
Comment