On Monday 11 March 2002 11:10, Chris Cocuzzo wrote:
> I would imagine the problem has something to do with those escaped quote
> marks, but in any case, you could probably get around it by doing this:
>
> $foo = "Entry for " . $HTTP_POST_VARS["name"];
>
> some correct me if I'm wrong

Or simply:

$foo = "Entry for for $HTTP_POST_VARS[name]";


-- 
Jason Wong -> Gremlins Associates -> www.gremlins.com.hk

/*
If you don't have a nasty obituary you probably didn't matter.
                -- Freeman Dyson
*/

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

Reply via email to