I tried the suggestion. What I received was an output with each field from the "list" as a letter of the word "array"
so this does part of it. But the value in the database is an array, within an array.
When I originally wrote the script to learn how to use arrays within arrays and push more values into the outer arrays, it worked fine until I split the file and had the creation of the array in one file, and the display in another. Now this isnt working.
I am posting below how I create the array that is inserted into MySQL. Perhaps this will give an Idea of what I am doing.
Code:
$arrayone = array($date, $time, $tech, $messageone);
$arraytwo = array($arrayone);
$dbquery = "insert into tickets values ( NULL , ";
$dbquery = $dbquery."\"".addslashes(stripslashes($arraytwo))."\" ) ";
$result = mysql_db_query($dbname,$dbquery); if(mysql_error()!=""){echo mysql_error();}