> $xyz = "Hello World";
>
> echo "<form><input type=test size=25 value=$xyz></form>";
>
> ?>
>
> The text box shows up with "Hello" NOT "Hello World". How do I get the
> entire variable?


I would try single quotes here.

$xyz = 'Hello World';

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

Reply via email to