Hallo,
als erstes machst du eine system-dsn für deine datenbank.
( Systemsteuerung -> ODBC -> usw.)
und dann folgenden code:
<?
$connect=odbc_connect( 'System-DSN_Name' , 'user', 'passwort' );
$sql_anweisung = "SELECT * FROM deinetabelle"
$result = odbc_exec($connect,$sql_anweisung);
while(odbc_fetch_row($result))
{
$index = odbc_result($cur,1);
$vorname = odbc_result($cur,2);
$nachname = odbc_result($cur,3);
$telefon = odbc_result($cur,4);
echo "<tr><td>$index</td>";
echo "<td>$vorname</td>".
"<td>$nachname</td><td>".
"$telefon</td></tr>\n";
}
odbc_close($connect);
?>
Ich hoffe das hilft dir weiter
Gruss
ralf