Its syntax is: string htmlspecialchars (string string)
The htmlspecialchars() function currently only converts the following characters:
& becomes &
"" becomes "
< becomes <
> becomes >
$user_input = "<> & !";
$conv_input = htmlspecialchars($user_input);
print $conv_input;
?>