How can I get this to work, I want an array with my SQL stuff in it?
mysql_connect (localhost, **, **);
mysql_select_db (**);
$result2 = mysql_query ("SELECT * From news order by id desc limit 10");
$row2 = mysql_fetch_array($result2);
foreach ($data as $key => $row) {
$volume[$key] = $row['id'];
$edition[$key] = $row['header'];
}