Drakla,
Thank you for the good advice. I went back and worked on the serialization idea and could not get it to work (this is question 1 I got Question 2 coming)
The code I wrote is as follows:
$conn = to_db();
$test_array = array('firstName', 'lastName');
$serial_test = addslashes(serialize($test_array));
$insert = mysql_query(insert into friends($serial_test) values('Jerry', 'Stevens')");
My knowledge of php is limited so I am sure I am doing something obvious wrong.
My second question is that in your post you said "if you really want to do this you could use serialization" is this an intensive process?
Again thank you for the help.
-Gomer