I would expect the output to be:PHP Code:<?php
$b="�";
$a=8238;
while ($a<8240)
{$b.="$a;";
echo"XX $a XX $b <br>";$b="&#";
$a++;}
?>
instead I get:XX 8238 XX character
XX 8239 XX character
It's best if you run the script yourself to see what I am talking about. The value for $a is strange for a while after that; a few hundred I think.XX 8238 XX *
XX 8239 XX
Any ideas what is going on here?



Reply With Quote

Bookmarks