Joe W. 02 December 2005 You need to remove the backslashes in the example of your PHP script. Possible patch:$the_name = htmlspecialchars(stripslashes($_GET[‘greeting-name’])); Actually, if this is a script you’re gonna share across other servers you should probably check what the magic_quotes setting is before stripping the quotes.
You need to remove the backslashes in the example of your PHP script.
Possible patch:
$the_name = htmlspecialchars(stripslashes($_GET[‘greeting-name’]));
Actually, if this is a script you’re gonna share across other servers you should probably check what the magic_quotes setting is before stripping the quotes.