Hi
I'm using dbase functions in my pages, quite in the same way as they are exposed in the manual, but I get the following error message:
Fatal error: Call to undefined function: dbase_create() etc.
(if I comment that line, the message would mention dbase_open function)
The code is:
$dbname = "zappo.dbf";
$def =
array(
array("TITOLO", "C", 7),
array("NOME", "C", 14),
array("COGNOME", "C", 21),
array("ENTE", "C", 44),
array("SEDE", "C", 44),
array("INDIRIZZO", "C", 44),
array("CAP", "C", 5),
array("PROVINCIA", "C", 2),
array("COMUNE", "C", 35)
);
dbase_create($dbname, $def);
$manicodbf=dbase_open("zappo.dbf", 2);
(I suppose it is a bug in php4, and I'm considering to migrate back to php3.)
Any suggestion would be greatly appreciated, I'm new to php, so I hope it's not a bug but a stupid mistake on my part
thanks in advance
tarko