How to Create a db4 Database With PHP
In order to create a blank db4 database with PHP script, all you need is to use this code:
$srcfile="/path/to/db4file";
$id=dba_open($srcfile, 'c', 'db4');
dba_close($id);
?>
In order to create a blank db4 database with PHP script, all you need is to use this code:
$srcfile="/path/to/db4file";
$id=dba_open($srcfile, 'c', 'db4');
dba_close($id);
?>