my database table is called items in that i have a field called items, in that field are all the items ordered by the customer. to print the extracted data iam using the following
$Link = mysql_connect ($Host, $User, $Password);
$Query2 = "SELECT * FROM $TableName2 WHERE cartId LIKE ('$cartId')";
$Result2 = mysql_db_query ($DBName, $Query2, $Link);
while ($Row2 = mysql_fetch_array ($Result2)) {
print ("<TD WIDTH=\"600\" COLSPAN=\"2\" ALIGN=LEFT><FONT FACE=\"Verdana, Arial, Helvetica, sans-serif\" SIZE=\"2\">$Row2[items]</FONT></TD>\n");
}
mysql_close ($Link);
?>
this is the basic code there are other bits but what am i doing wrong, the items field is one entry going into the database but can it come out and be split by a delimiter