Forum Moderators: coopster
$records = Array();
$R1 = mysql_query("select * from AnnArbor where Active='0' AND Pending='0' ORDER BY ID LIMIT 8");
while ($recentdeal = mysql_fetch_array($R1)) {
array_push ($records,
Array (
'Deal Name' =>$recentdeal['Deal Name'],
'Price' => $recentdeal['Price'],
'Value' => $recentdeal['Savings'],
'EDay' => $recentdeal['EDay']
)
);
}