I created this page and viewed it in MS EXP and all was fine. Someone using Netscape told me they could not submut the form. I got home and viewed it using Netscape 7.1 and sure enough!
This is the code of triponline.com/aaa.php. Is there anything wierd here that would cause this?
$sql = "SELECT AgencyName, Manager, Address1, Address2, Address3, City, RegionISO, Postal FROM $table_name ORDER BY Postal";
$result = @($sql, $connection) or die ("Could not sql!");
while ($row = mysql_fetch_array($result)) {
$AgencyName = $row['AgencyName'];
$Manager = $row['Manager'];
$Address1 = $row['Address1'];
$Address2 = $row['Address2'];
$Address3 = $row['Address3'];
$City = $row['City'];
$RegionISO = $row['RegionISO'];
$Postal = $row['Postal'];
$option_block .= "<option value=\"$Postal\">$Postal, $RegionISO, $City</option>";
}
$display_block = "<select multiple name=\"mlbl[]\" >$option_block<\select>";
?>
<html>
<head>
<title>Pick It!</title>
</head>
<body>
<FORM METHOD ="post" ACTION ="bbb.php">
<? echo "$display_block"; ?><p>
<input type="submit" value="Submit" name="B1"><input type="reset" value="Reset" name="B2"></p>
</form>
</body>
</html>
Thanks so much for your help!
Bob