<form method=post action='$PHP_SELF'>
<input type=submit
</form>

even the simplest forms product a 0x013 0x10 imediatly after the <form> I wish there 
was a way to control this behaviour. I thought it was normal, and anoying.


-- 

 Chris Lee
 Mediawaveonline.com

 ph. 250.377.1095
 ph. 250.376.2690
 fx. 250.554.1120

 [EMAIL PROTECTED]


"Jeff Schwartz" <[EMAIL PROTECTED]> wrote in message 
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
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