Re: [PHP] input textfield value cat!

2001-03-09 Thread Richard Lynch
tmusic.com/volunteer.htm - Original Message - From: "kaab kaoutar" [EMAIL PROTECTED] Newsgroups: php.general Sent: Monday, March 05, 2001 9:27 AM Subject: [PHP] input textfield value cat! Hi! i'm storing values in session variables, when i get a value wich is a sequence of word

Re: [PHP] input textfield value cat!

2001-03-05 Thread kaab kaoutar
I'm using a variable! input type="text" name="MyTextInput" value=?=$val ? From: "Brad S. Jackson" [EMAIL PROTECTED] To: "kaab kaoutar" [EMAIL PROTECTED] Subject: Re: [PHP] input textfield value cat! Date: Mon, 5 Mar 2001 10:08:21 -0600 Make sure

Re: [PHP] input textfield value cat!

2001-03-05 Thread Christian Reiniger
On Monday 05 March 2001 17:29, you wrote: I'm using a variable! input type="text" name="MyTextInput" value=?=$val ? Well, you *still* need to have quotes around it: input type="text" name="MyTextInput" value="?=$val ?" Make sure you have quotes around the value. input type="text"

Re: [PHP] input textfield value cat!

2001-03-05 Thread Batonik
On Mon, 5 Mar 2001, kaab kaoutar wrote: I'm using a variable! input type="text" name="MyTextInput" value=?=$val ? Quote the value: input type="text" name="MyTextInput" value=\"?=$val ?\" Greets, Batonik -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: