hi
i never worked with dbase, but i think you should have something like mysql has, say you create $sql variable which contains sql query, you have to call mysql_query() to run it against the mysql server...
well, i also suggest you echo the $sql variable to browser's window and see how it looks, then just copy it and run it in dbase or do this (as if it was done in mysql):
$sql = "UPDATE .... SET ....";
if(!mysql_query($sql,$conn))
{
echo "query could not be executed";
exit;
}
try doing something like that... :D
www.campusgrind.com the college portal