yeah i had tried gdm_open just in case but didn't put it back but it still
Fatal error: Call to undefined function: dbmopen() in
/home/www/devineinsurance/admin.php on line 10
and it is installed.
<fragment>
function createdb()
{
(LINE 10)$test = dbmopen("db/content" , "r" ) or die( $dbexist = false );
dbmclose( $test );
if ( $dbexist == false )
{
print "<p>";
print "Db Doesn't Exist.<br>\n";
print "Creating db\n";
$dbh = dbmopen( "/db/content" , "c") or die( "Failed" );
print "Success\n";
print "</p>";
}else{
print "<p><b><font color=\"Red\">";
print "Db Already EXISTS!!!<br>\n";
print "Delete DB FIRST<Br>\n";
print "DB CREATION FAILED<br>";
print "Task failed";
print "</font></b></p>";
}
}
</fragment>