itsa a question i have been wondering about for a while an i cannot seem to find an answer for , an im just wondering you any of you would know
i have the following query an loop
$sql = "Select * from ign where whos='$uid'";
$result = mysql_query($sql);
while ($row = mysql_fetch_array($result)) {
$ign=$row["users"];
$Ignore = explode (",", $ign);
}
if ignore equals multiple names
such as ralph, freddy , chucky , angelica, ace
how can i use the mutiple result in a query like
if ($option!==send){
$sql = "Select theNick, theText from chatScript where thenick!='$Ignore'
TIA 😃