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
View Add Comment Developer Edit
Welcome! If you don't have a Git account, you can't do anything here.
You can add a comment by following this link or if you reported this bug, you can edit this bug over here.
(description)
Block user comment
Status: Assign to:
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

Add a Patch

Pull Requests

Add a Pull Request

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-2024 The PHP Group
All rights reserved.
Last updated: Fri Apr 19 20:01:29 2024 UTC