Hello
I have 3 locations that sell 5 types of flowers. 3 of these can be automatically confirmed at 2 locations but how do I get it to sort which location was picked. I thought something like this which works without adding the locations, but once the locations are put in, the two "if" statements don't work. Any suggestions? Thanks.
if ($GET['location'] == "Location1" || $GET['location'] == "Location2")
if ($GET['flower'] == "Tulip" || $GET['flower'] == "Rose" || $_GET['flower'] == "Lilie")
{
bla bla
}
header("Location: confirm.php3?flower=$flower");
}
else
{
bla bla
}
header("Location: notconfirmed.html");
}
exit();
}
}