Having yet more php troubles (it never seems to end)...
Should something like that work? I'm finding it doesn't, at all. Am I doing something wrong? It *looks* right, (to me at least)..
$rs_selected is a subset of $rs_full.
Code:
while ($row = mysql_fetch_row($rs_full)) {
while ($row2 = mysql_fetch_row($rs_selected)) {
if ($row[0] == $row2[0]) {
echo "$row2[1]";
}
}
}
Should something like that work? I'm finding it doesn't, at all. Am I doing something wrong? It *looks* right, (to me at least)..
$rs_selected is a subset of $rs_full.