I have a problem with my script.
I have this:
<?php
$r=mysql_query("SELECT * FROM memberships WHERE id!='".$userdata['membership']."'");
while($md = mysql_fetch_assoc($r)):
echo '<td class="header">'.$md['name'].'</td>';
endwhile;
?>
That works. But if further down the page, I add this:
<?php
while($md = mysql_fetch_assoc($r)):
echo '<td class="result">'.$md['number_of_ads'].'</td>';
endwhile;
?>
It doesn't output anything. Why?
mysql_fetch_assoc($r)so that you enter the second loop. – jadarnel27 Aug 8 '11 at 14:16