Here is the php that goes with the form. Of course, I'm guessing that if that script is unfamiliar to you my problem is likely not with the php. Thanks.
<? $db = mysql_connect('mysql163.12345.net', '12345DB1', 'Database12345');
if (!$db) {
echo "Unable to connect to DB: " . mysql_error();
exit;
}
if (!mysql_select_db("12345DB1")) {
echo "Unable to select mydbname: " . mysql_error();
exit;
}
$id = mysql_escape_string($_GET['ID']);
$res = mysql_query("SELECT * FROM Inventory WHERE ID='$id'");
if ( $row = mysql_fetch_assoc($res) ) {
list($width, $height, $type, $attr) = getimagesize('BigImages/'.$row['IMAGE']);
echo '<span style="cursor:pointer"><img border="0" src="../Images/'.$row['IMAGE'].'"
onclick="window.open(\'http://www.12345.net/BigImages/'.$row['IMAGE'].'\'
,\'mywindow\',\'scrollbars=1,resizable=1,'. str_replace(array(" ", '"'),array(",", ""),$attr). '\').focus();"></span>';
?>
</td>
<td width="290" colspan="2">
<p align="center"><font color="#FFFFFF" face="Book Antiqua">
<? echo '<b><font size="4">'.$row['FIRST'].' '.$row['LAST'].'</font></b><br>
('.$row['NATIONALITY'].', '.$row['DATES'].')<br>
<i>'.$row['TITLES'].'</i><br>
'.$row['MATERIAL'].'<br>
'.$row['SIZE'].'<br>
'.$row['SIGNATURE'].'<br>';
}
?>