I need to open the database using dbase_open to check if the username is already there. The value of username is $un.
I want to return an error if the username is taken...
$dbpath = '/user.dbf';
// open database to check if username is already taken
dbase_open($dbpath,0)
dbase_close()
this is all i could figure out
Can anyone help?