guest2013-1
guest
- Joined
- Aug 22, 2003
- Messages
- 19,800
Hey guys, messing around with PHP and classic ASP
I see in PHP you can:
And get the € symbol
With ASP doing:
Get's me a string of those 3 characters. It appears PHP is somehow adding those together for a symbol? Please get me to understand the difference!
I see in PHP you can:
Code:
<?php echo chr(226).chr(130).chr(172) ?>
And get the € symbol
With ASP doing:
Code:
<% Response.Write chr(226) & chr(130) & chr(172) %>
Get's me a string of those 3 characters. It appears PHP is somehow adding those together for a symbol? Please get me to understand the difference!