En tu caso seria algo asi:
Código PHP:
$query = "SELECT * FROM tabla";
$sel = mysql_query($query);
$arreglo = mysql_fetch_row($sel);
foreach($arreglo as $indice => $valor)
echo $indice." -> ".$valor."<br>";
Checa que no uso mysql_fetch_array si no mysql_fetch_row
Salu2