I am stuck, I know how to open and close a database but I am stuck on how to retreive a row from it. I want to retrieve a line that has the first value as fahhem. But I am at a standstill of what to do to get to that line.
Could someone help me?
<?php
function finduser($user)
{
$dir="/usr/home/freehost/26817"
$userdb=dba_open("$dir/users.mdb","r","mdb")
echo dba_firstkey($userdb)
dba_close($userdb)
}
?>
Thanks in advance!