I have a query to insert a product record into MySql database. Some products have flavours, some do not. On the form I have
- PHP: Select all
if ($flav_exist != "y") {
$flavour = "";
}
The insert query works fine in Firefox, but fails in Internet Explorer, without giving error message. Any ideas please.