Problem:
I have table in dBase (.dbf file)
There is column DATE_ It looks like this:
2002-09-03 15:47:00
Why php ignores this field?
I tried this:
//------------------------------------------
$record = dbase_get_record ($conn,1);
for($kk = 0; $kk<$fields_number;$kk++)
{ echo $record[$kk]."<br>"; }
and this:
//------------------------------------------
$record = dbase_get_record_with_names ($conn,1);
echo $record["DATE_"]."<br>";
no reusults 🙁
Please help
Suvalkietis