while ($row = mysql_fetch_assoc($result)) {
foreach ($row as $key => $value) {
if ($key == 'Yen_Price') {
echo "Hello";
}
echo "<td>$value</td>";
}
}
Detto questo, utilizzare la stessa funzione per elaborare tutti i risultati di tutte le tabelle possibili sarà presto piuttosto ingestibile. Dovresti personalizzarlo per adattarlo all'occasione in questo modo:
while ($row = mysql_fetch_assoc($result)) {
echo "<td>Foo: $row[foo]</td>";
echo "<td>Bar: $row[bar]</td>";
}