php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #5530 dbase_creation does not work
Submitted: 2000-07-12 12:19 UTC Modified: 2000-07-12 18:58 UTC
From: octave at ovh dot net Assigned:
Status: Closed Package: dBase related
PHP Version: 4.0.1pl2 OS: Linux 2.2.16
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: octave at ovh dot net
New email:
PHP Version: OS:

 

 [2000-07-12 12:19 UTC] octave at ovh dot net
working on php4.0.1pl2 ->> http://ns3.ovh.net/test.php3

http://ns3.ovh.net/creation.php3 does not work at all

I did test in with the old httpd (compiled with php3) and it works.

So I guest, it is php4 problem.

Octave

# cat creation.php3 
<?

// "database" name
$dbname = "base/test.dbf";

// database "definition"
$def =
array(
array("date",     "D"),
array("name",     "C",  50),
array("age",      "N",   3, 0),
array("email",    "C", 128),
array("ismember", "L")
);

// creation
if (!dbase_create($dbname, $def))
print "<strong>Error!</strong>";

?>      




Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2000-07-12 18:57 UTC] sterling at cvs dot php dot net
Fixed in CVS.
 [2000-07-12 18:58 UTC] sterling at cvs dot php dot net
forgot to close.
 
PHP Copyright © 2001-2025 The PHP Group
All rights reserved.
Last updated: Wed Feb 05 12:01:32 2025 UTC