I have a form with a submit button on an include page in PHP. All works well with IE and Firefox, but the button does not display in Safari. You can see this by going to [
swwoodcarvers.org...] and navigating to the "Newsletters" page. There should be a Submit button below the dropdown. The code for this is:
<form action="index.php" method="post">
<?php
$query = "SELECT id, date, name from newsletter order by date desc";
$result = mysql_query($query) or die('Sorry, could not read newsletter table');
echo "<center>";
echo "<select name=\"newsletter\">\n";
echo "</center>";
while ($row = mysql_fetch_array($result, MYSQL_ASSOC))
{
$value = $row['name'];
echo "<option value=\"$row[id]\">$value";
}
?>
<input type="hidden" name="content" value="showNewsletter">
<center>
. <br /><input type="image" name="news" src="Images/submitButton.jpg">
</center>
</form>
Anyone have any idea why the button will not show?
Thanks,
Bill