php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #1895 dbase not working at all
Submitted: 1999-07-27 14:32 UTC Modified: 1999-10-04 17:31 UTC
From: stefan at mystique dot com Assigned:
Status: Closed Package: dBase related
PHP Version: 4.0 Beta 1 OS: linux 2.2.10
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: stefan at mystique dot com
New email:
PHP Version: OS:

 

 [1999-07-27 14:32 UTC] stefan at mystique dot com
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.";
?>

Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [1999-10-04 17:31 UTC] sas at cvs dot php dot net
What does it do vs. what is it expected do?
 
PHP Copyright © 2001-2025 The PHP Group
All rights reserved.
Last updated: Wed Feb 05 12:01:32 2025 UTC