--- 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
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
&
> $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
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
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,
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
Hi all,
I am having a bit of a problem, and was wondering if you could help?
Here's the sample code (very simple)
";
?>
The text box shows up with "Hello" NOT "Hello World". How do I get the
entire variable?
Thanks for your help,
Jay
7 matches
Mail list logo