On Fri, 22 Mar 2002, webapprentice wrote:
> I have a form with a text field, say userName.
> I put a value in that has double quotes (i.e. "foobar") and submit this form.
> 
> On output I have this:
> <?php echo $HTTP_POST_VARS["userName"]; ?>
> 
> The output ends up being a \.

The quotes go away, or they just get a backslash before them? If the 
latter, try <?= stripslashes($HTTP_POST_VARS['userName']) ?>

miguel


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

Reply via email to