<?
include ("config.php"); <==adminidL and adminpwdL store here!!
require_once("global.php");
$pictime=get_date($time_s);
include ("config.php"); <=======I got the variable, true!
echo $adminidL;
echo $adminpwdL;
if (empty($adminid)) $adminid=$HTTP_SESSION_VARS['adminid'];
if (empty($adminpwd)) $adminpwd=$HTTP_SESSION_VARS['adminpwd'];
if($adminid != $adminidL || MD5('$adminpwd') != $adminpwdL) {$admin_body="
<FORM action=admin.php method=post>
<P>Administration Log in</P>
<P>Username:</SPAN><INPUT type=text name=adminid></P>
<P>Password:</SPAN><INPUT type=password name=adminpwd></P>
<INPUT type=submit value=Admin Login></FORM>
}
.....
...
*** but the login checking still not workable
after I entered passwd/username , it always just reset the login form...never pass.