hello,
I am using a form and have an issue with an the submit button.
I want to use an image to represent a submit button , I get the image ok but
when I click on the image button the button appears to loose the "name=id
value=id " settings and so my script fails , i have used an image for a
submit button before but it did not contain any "name=? value=? " Is there
any restrictions I should know about regarding using images with submit
buttons.
here's the complete code
echo "<td><select name=brand_group size=1>\n";
$qry_1 = mysql("$DBName", "select * from brand_group order by b_name");
if (mysql_num_rows($qry_1)>0) {
while ($r_1 = mysql_fetch_array($qry_1)) {
echo "<option value=\"$r_1[b_name]\">$r_1[b_name]\n";
}
}
echo "</select></td><td><input type=\"submit\" name=\"id\"
value=\"Find\"><input type=hidden name=slno
value=$slno></td></tr></table></form>\n";
Thanks for your help in this matter.
Regards
John