<?php
error_reporting(E_ERROR | E_WARNING | E_PARSE);
include("datafile/config.php");
include("include/db/db_{$sqltype}.php");

bmbdb_connect($db_server, $db_username, $db_password, $db_name, 0, $mysqlchar);
$MEMBER_NAME="adminbmfnew"; // Name
$MEMBER_PASS="12345"; // Password

$MEMBER_PASS_W=md5($MEMBER_PASS);

$result = bmbdb_query("INSERT INTO `{$database_up}userlist` (`userid`, `username`, `pwd`, `avarts`, `mailadd`, `qqmsnicq`, `regdate`, `signtext`, `homepage`, `fromwhere`, `desper`, `headtitle`, `lastpost`, `postamount`, `publicmail`, `mailtype`, `point`, `pwdask`, `pwdanswer`, `ugnum`, `money`, `birthday`, `team`, `sex`, `national`, `lastlogin`, `tlastvisit`, `deltopic`, `delreply`, `uploadfiletoday`, `lastupload`, `foreuser`, `hisipa`, `hisipb`, `hisipc`, `newmess`, `baoliu1`, `baoliu2`, `personug`) VALUES ('','$MEMBER_NAME', '$MEMBER_PASS_W', '', '$EMAIL', '※※', '" . time() . "', '', '', '', '', '', '', 0, '0', 'text', '0', '', '', '0', '0', '', '', '', '', '', '', '0', '0', '0', '', '', '', '', '', '', '', '', '')");
echo "done";