I'm lost, and I now need help.
I have an array passed through a form from a multiple selection menu.
foreach($Suburb as $SuburbID)
{
echo"<b>Suburb:</b> $SuburbID<br>";
}
This renders the data like so:
Suburb: 22
Suburb: 36
Suburb: 40
Suburb: 80
Thats all cool, the problem is I can't figure out how to put that in a mySQL statement.
$Query = "SELECT * FROM Properties WHERE
SuburbID = ?????????";
Please replace the ???????? with a logical solution. I'm a newbe to this kind of thing.
Ta.
Marc