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: m.ford@xxxxxxxxxxxxxx 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