|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[1999-10-04 17:31 UTC] sas at cvs dot php dot net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Nov 02 12:00:01 2025 UTC |
none of the dbase functions apear to work. here is the create script which fails <?php // "database" name $dbname = "srnews.dbf"; // database "definition" $def = array( array("sdate", "N", 16, 0), array("edate", "N", 16, 0), array("dspedate", "L"), array("title", "C", 128), array("url", "C", 80), array("desc", "C", 768) ); // creation if (!dbase_create($dbname, $def)) print "<strong>Error!</strong>"; print "database creation done."; ?>