We've just moved to a new server and I'm running into an odd problem. The
code is below. On my old server it correctly returns:

[test] 
t 116
e 101
s 115
t 116

But on my new server I get:

[ test] 
13
10
t 116
e 101
s 115
t 116

Has anyone else run into this?

<?php
echo "[$action] <BR> ";
        while ($action){
                $c = substr($action,0,1);
                $action = substr($action,1);
                echo "$c " . ord($c) . "<BR>";
        }
?>

<FORM ENCTYPE='multipart/form-data' ACTION='z.html' METHOD='POST'>
<input type="hidden" name="action" value="test">
<INPUT TYPE='submit' VALUE='Process'></FORM>


__________________________________________________
Do You Yahoo!?
Get email at your own domain with Yahoo! Mail. 
http://personal.mail.yahoo.com/

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to