Kevin
I tried flushing and also IE 6 and Netscape 6.2. Still getting truncation.
Mike
---
Kevin Stone wrote:
Hmm. Don't know what to tell ya. It works on my computer. Have you tried
pressing CTRL+F5 to flush your browser cache?
- Kevin
----- Original Message -----
From: "rentAweek support" <[EMAIL PROTECTED]>
To: "Kevin Stone" <[EMAIL PROTECTED]>
Cc: "Michael Eacott" <[EMAIL PROTECTED]>;
<[EMAIL PROTECTED]>
Sent: Monday, February 17, 2003 3:12 PM
Subject: Re: [PHP] Text data truncated after first blank character in form
fields
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