Made some changes, based on stuff I read, and can now post the array and insert into the table - Good.
This is what's inserted for one selected product:
a:1:{i:0;a:1:{s:14:"Test Product";s:2:"on";}}
In a separate script, designed to read in the contents of this table for display purposes, I have the following code designed to get the records for display, and unserialize the array:
$Name = $row['Name'];
$EmailAddress = $row['EmailAddress'];
$AssetName = $row['AssetName'];
$CompanyName = $row['CompanyName'];
$var = unserialize ($AssetName);
$text_block .= "
<Table border=1 Table width=100% cellpadding='2'>
<tr valign ='Top'>
<td col width=25%>$Name</td>
<td col width=25%>$EmailAddress</td>
<td col width=25%>$var</td>
<td col width=25%>$CompanyName</td></tr>
</Table>";
When I now view the page which should, I would expect, under products say - Test Product, it says Array!
Why does it say Array and not Test Product?