Re: [PHP] text input truncated

2003-11-04 Thread Chris Shiflett
--- Daniel Clark <[EMAIL PROTECTED]> wrote: > > $xyz = "Hello World"; > > echo ""; > > > > 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'; That's good advice in general, but this error is th

Re: [PHP] text input truncated

2003-11-04 Thread Nathan Taylor
Your html is very sloppy actually. Use: $xyz = 'Hello World'; echo ''; - Original Message - From: Daniel Clark To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Tuesday, November 04, 2003 6:49 PM Subject: Re: [PHP] text input truncated &

Re: [PHP] text input truncated

2003-11-04 Thread Daniel Clark
> $xyz = "Hello World"; > > echo ""; > > ?> > > 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

RE: [PHP] text input truncated

2003-11-04 Thread Pablo Gosse
On Tuesday, November 04, 2003 3:28 PM Jay wrote: > echo ""; [snip] > The text box shows up with "Hello" NOT "Hello World". How do I get the > entire variable? Hi Jay. You need to wrap the value attribute in quotes, or else it'll truncate at the first space. echo ""; Oh, and you'd also misspel

RE: [PHP] text input truncated

2003-11-04 Thread Martin Towell
Put quotes around all the values, like: echo ""; Martin -Original Message- From: Jay Frumkin [mailto:[EMAIL PROTECTED] Sent: Wednesday, 5 November 2003 10:28 AM To: '[EMAIL PROTECTED]' Subject: [PHP] text input truncated Hi all, I am having a bit of a problem, and was wondering if you

Re: [PHP] text input truncated

2003-11-04 Thread Chris Garaffa
On Nov 4, 2003, at 6:27 PM, Jay Frumkin wrote: Hi all, I am having a bit of a problem, and was wondering if you could help? Here's the sample code (very simple) $xyz = "Hello World"; echo ""; ?> The text box shows up with "Hello" NOT "Hello World". How do I get the entire variable? If you