HTML - body contains:
 <form method="post" action="test.php">
     <input type="text" name="foo">
     <input type="submit">
 </form>

 test.php contains:
 <?
     echo $_POST['foo'];
 ?>
 when I type in:       'example'
 test.php echoes :   'exampl'
string-length doesn't matter...




> On Mon, 29 Apr 2002, Herbert Mraz wrote:
> > Strange problem here (win2k - iis 5.0 - php 4.2.0):
> > 
> > whenever I send formdata by POST-method, the last character gets
> > stripped...everything's fine when I use GET!
> > I tried various different (HTML-) input types, same everywhere...
> 
> Can you show a self-contained sample that shows the simplest case where 
> this occurs (ideally a 3- or 4-line program)?
> 
> miguel




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to