$sql = "Select users from ign where whos='$uid'";
$result = mysql_query($sql);
while ($row = mysql_fetch_array($result)) {
$ign=$row["users"];
$Ignore = explode(",", $ign);
}
foreach ($Ignore as $value)
{
echo "<tr bgcolor=\"#D8E4F0\"><td width=\"120\">$value</td><td width=\"330\"><a href=\"ignored.php?un=true&user=$value\">Unignore</a></td></tr>";
i have the following code,
CREATE TABLE ign (
users text, NOT NULL
whos varchar(20) NOT NULL default ''
) TYPE=MyISAM;
why do i keep getting blank results ?
i cant stop it :S
}