$SQL = "SELECT * from CATEGORIES WHERE ID = '$id'"; $result = @mysql_query( $SQL ); $row = @mysql_fetch_array( $result );
<input type=text name=TITLE size=30 value=<?php echo $row['TITLE']; ?>>
Why is this only printing the first word from the database into the form field?
ie..
"3D Modeling"
appears as:
"3D"
the spaces are causing a problem.. I have done this a hundred times and not had this problem, ... confused
Thanks
-Arron