Thanks

I tried our your suggestion sic:
<input type="text" size="20" name="testvar" value="<?php echo $testvar; ?>">
Still truncation

Mike
---
Kevin Stone wrote:

It's your HTML  Failing to enclose the value in quotes may lead to
truncation.  Your output looks like this...
<input type="text" size=20 name=testvar value=a b c>

You should always quote every parmeter in the tag just to avoid such
problems.  This should work..
<input type="text" size="20" name="testvar" value="<?php echo $testvar;?>">

- Kevin








Reply via email to