THis is the code:
while ($row=mysql_fetch_array($result))
{
$title=stripslashes($row['title']);?>
<tr>
<td class="purchase"><div align="left"><b><?php $title." -</b>".stripslashes($row['description']);?></div><br></td>
<td valign="top" class="purchase"><div align="right"><b>$<?php echo $row['price'];?></b></div></td>
<input type="checkbox" name="purch_items[]" value="<?php echo $row['pkgid']; ?>"><input type="hidden" name="purch_titles[]" value="<?php echo $row['title']; ?>">=<?php echo $title; ?></div>
</td>
</tr>
<?
I know the record is being accessed from the output. The purch_items[] is being populated correctly. The hidden variable is not.
Any ideas?