these are the errors i get:
Warning: Unable to create database (22): Invalid argument in c:\websites\cascadehosting63\cascade-hosting.com\dbtests\databtest.php on line 17
Warning: Unable to find database for identifier 0 in c:\websites\cascadehosting63\cascade-hosting.com\dbtests\databtest.php on line 19
my new code:
$datab = "(fullpath)/dbtests/test.dbf";
$create =
array(
array("date", "D"),
array("name", "C", 50),
array("email", "C", 128),
);
$make = dbase_create($datab, $create);
$rec = array('20030426','Fred','fred@domain.com');
dbase_add_record($make, $rec);
if (!$make)
{
print "didn't work blah";
}
All i can think of is the server doesnt have dbf enable. if the code worked for you. i had the full path typed in ect. I dont see anything wroung with the code anyone see anything i am missing?
one question i am guessing to use ACCESS im gonna have to go buy the program.
also the server is not mine i just rent.
thanks for the help