Hi

I'd like to read out a date from the a DB, but as time var. By default
I seem to get it as a string.

E.g.

while(odbc_fetc h_row($result))
{
$tt= odbc_result($re sult,2);
echo date("d.m.Y", $tt).", ".odbc_result($ result,6) . " <br>";

S...