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
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: 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

Add a Patch

Pull Requests

Add a Pull Request

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-2024 The PHP Group
All rights reserved.
Last updated: Thu Mar 28 21:01:27 2024 UTC