okay, then the new code woudl be:
<html>
<head>
<title>Eye Contact - Century to Century</title>
<link rel="stylesheet" href="eye01.css" type="text/css" />
</head>
<body>
<form name = "display" method = "post" action = "http://localhost/display.php">
<?php
print "<table width='100%' border='1' height = '90%'>";
$db = mysql_connect("localhost","root","");
if (!$db)
{
print "error - Could not connect to MySQL";
exit;
}
$er = mysql_select_db("touch_art1");
if(!$er)
{
print "error - Could not select the database";
exit;
}
extract($_POST);
$query = "SELECT filename, yr_left, city_origin, country_origin, yr_arrival, city_arrival, state_arrival FROM story WHERE country_origin = '$search_country' AND pamapproved = 'Y' ORDER BY yr_left";
$result = mysql_query($query);
print "<tr height = '15%'>";
print "<th class='theader'>File</th>";
print "<th class='theader'>Year Left</th>";
print "<th class='theader'>City Origin</th>";
print "<th class='theader'>Country Origin</th>";
print "<th class='theader'>Year Arrived</th>";
print "<th class='theader'>City Arrived</th>";
print "<th class='theader'>State Arrived</th></tr>";
while($row = mysql_fetch_array($result))
{
print "<tr height = '30%'>";
foreach($row as $key=>$val)
{
if($key == 'filename')
print "<td><input type = 'button' name = 'file' value = '$val'></td>";
else
print "<td class='tdata'>$val</td>";
}
print "</tr>";
}
print "</table>";
mysql_free_result($result);
mysql_free_result($result2);
mysql_close();
?>
<input type="hidden" name="" value="none">
<table width = "100%" border = "0" height = "10%">
<tr height = "10%">
<td align="left" valign="bottom" width="50%" >
<embed src="images/home.svg" width="100%" height="100%" wmode="transparent" type="image/svg+xml" />
</td>
<td align="right" valign="bottom" width="50%" >
<embed src="images/back.svg" width="100%" height="100%" wmode="transparent" type="image/svg+xml" />
</td>
</tr>
</table>
</form>
</body>
</html>