Maybe I've just been look at this too long... but all I'm trying to do is to do a simple loop (with PHP and mysql) such as:
while($row = mysql_fetch_array($new)) {
$pagename = $row['pagename'];
$count = $row['count'];}
but I need to be able to declare the variables for a specific rows returned... i.e.
$page1_count = count where pagename = page1 (I need to do this for multiple pages)
I have my output table structure done, etc. it is just the individual variable value issue above... please help.
Thanks,
Ryan