Hey ...
u r making two nested fetch ... I think this is the problem ...
I didn't use mysql b4 , I use Oracle database but there I can't make nested fetch ...
fetch after another
Solution1:
$result = mysql_query("SELECT * FROM groupuser WHERE user='$username'");
while ($row = mysql_fetch_array($result)) {
$gid = $row['gid'];
echo "GIDs is " . $gid . ".<br />";
}
$gresult = mysql_query("SELECT * FROM group where gid='$gid'");
while ($grow = mysql_fetch_array($gresult)) {
echo $grow['name'];
}
}
close the first fetch before starting the second
Solution2:
if u need the data from the two tables at the same time .... u can make a join relation between 'em if there is any common things and execute a single query with single fetch
Solution3:
if u r going to use the first data in order to get the second data ... fetch all the first data and store it inside an array then take 'em from that array .... the make the second fetch
I hope this will work, plz try any solution and tell me back about the result
Greetings,
Noor