Hi, I have a form for a member to signup for an account. The form has standard fields for addresses, city state, etc. When I insert the data into the table, if the string has more than one word, it gets truncated to the first word.
Does this sound like a PHP or a MySQL problem. Here's the code: (partial as the query is quite long) $tr_addr1 = $_POST['addr1'] $query = "INSERT INTO subscribers (addr1) VALUES('$tr_addr1')"; The MySQl table is as such: addr1 = varchar(50) Thanks, James -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php