RE: [PHP-DB] Inserting querydata as default value in form

2004-01-28 Thread Paul Miller
Need some quotes

input name=link TYPE=TEXT cols=40 value=\.$query_data[4].\

Output will look like
input name=link TYPE=TEXT cols=40 value=Look Here

Instead of 
input name=link TYPE=TEXT cols=40 value=Look Here\
Which it probably looks like now.

- Paul

-Original Message-
From: Georg Herland [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, January 28, 2004 12:05 PM
To: [EMAIL PROTECTED]
Subject: [PHP-DB] Inserting querydata as default value in form


Hi!

I hav made a simle page to insert update and delete data in MYSQL. I try
to put existing data into a standard form field to make editing
easyer:
input name=link TYPE=TEXT cols=40 value=$query_data[4] Problem is when
the text data contains a space ie Look here. Then only the first word
show. To display both words i have to update the data to Look_here
witch isn't really looking good. A good suggestion, anyone?

TIA Georg :-)

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP-DB] Inserting querydata as default value in form

2004-01-28 Thread Ford, Mike [LSS]
On 28 January 2004 18:05, Georg Herland wrote:

 Hi!
 
 I hav made a simle page to insert update and delete data in MYSQL.
 I try to put existing data into a standard form field to make editing
 easyer: input name=link TYPE=TEXT cols=40 value=$query_data[4]
 Problem is when the text data contains a space ie Look
 here. Then only the
 first word show.

Oh dear, it's HTML 101 time again.

Quote your attribute values!

input name=link TYPE=TEXT cols=40 value=?php echo $query_data[4]
?


Cheers!

Mike

-
Mike Ford,  Electronic Information Services Adviser,
Learning Support Services, Learning  Information Services,
JG125, James Graham Building, Leeds Metropolitan University,
Beckett Park, LEEDS,  LS6 3QS,  United Kingdom
Email: [EMAIL PROTECTED]
Tel: +44 113 283 2600 extn 4730  Fax:  +44 113 283 3211 

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php