Hi,
$new = htmlspecialchar s("<a href=", ENT_QUOTES, 'ISO-8859-15');
echo $new;
displays:
<a href
Instead of :
< a href
I added the character set since this is a computer in Europe.
The PHP is the Win32 5.1.2
Thanks for your help
$new = htmlspecialchar s("<a href=", ENT_QUOTES, 'ISO-8859-15');
echo $new;
displays:
<a href
Instead of :
< a href
I added the character set since this is a computer in Europe.
The PHP is the Win32 5.1.2
Thanks for your help
Comment