tak jak w temacie, a oto kod:
<?php
require("./CustomSql.inc.php");
$db = new CustomSQL($DBName);
$showtable = true;
$errortag = false;
if (!empty($userlogin)) {
$errortag = true;
$errormsg = $error_usernameempty;
}
$errortag = true;
$errormsg = $error_passwordempty;
}
$customerid = $db->logincheck($username,$password);
if ($customerid==0) {
$errortag = true;
$errormsg = $error_wrongpassword;
}
if (!$errortag){
$_SESSION["CID"] = $customerid;
$CID = $customerid;
$showtable = false;
}
}
$showtable = false;
}
?>
<html>
<head>
<title>
<?php print "$front_login"; ?></title>
<meta http-equiv="Content-Type" content="text/html; charset=
<?php print "$front_charset"; ?>">
<link rel="stylesheet" href="./style/style.css" type="text/css">
<script language="JavaScript">
<!--
function MM_reloadPage(init) { //reloads the window if Nav4 resized
if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage;
}}
else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
// -->
</script>
</head>
<body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0">
<table width="770" border="0" cellspacing="1" cellpadding="0" align="center" class="table_01">
<tr>
<td class="table_02" width="160" valign="top">
<table width="160" border="0" cellspacing="0" cellpadding="4">
<tr>
<td> </td>
</tr>
<tr>
<td valign="top"></td>
</tr>
</table>
</td>
<td class="menu" bgcolor="#FFFFFF" valign="top" width="610">
<table border="0" cellspacing="0" cellpadding="4" width="610">
<tr>
<td bgcolor="#F2F2F2" class="menu_in">::
<?php print "$front_login"; ?> <font color="#FF0000">*</font>
<?php print "$front_requiredinfo"; ?></td>
</tr>
<?php
if ($errortag){
?>
<tr>
<td><font color="#FF0000">
<?php print "$errormsg"; ?></font></td>
</tr>
<?php
}
?>
<tr>
<td>
<?php
if ($showtable){
?>
<form action="
<?php print "$PHP_SELF"; ?>" method="POST">
<table border=0 cellpadding=2 cellspacing=2>
<tr><td width="120">
<?php print "$front_username"; ?> : </td><td><input type="text" name="username" value="
<?php print "$username"; ?>"> <font color="#FF0000">*</font></td></tr>
<tr><td>
<?php print "$front_password"; ?> : </td><td><input type="password" name="password" value=""> <font color="#FF0000">*</font></td></tr>
<tr><td><a href="register.php">
<?php print "$front_registration"; ?></a> <a href="forgetpass.php">
<?php print "$front_forgetpass"; ?></a></td><td><input type="submit" name="userlogin" value="
<?php print "$front_login"; ?>"></td></tr>
</table>
</form>
<?php
}
else{
?>
<a href="modiinfo.php">
<?php print "$front_modiinfo"; ?></a> <a href="modipass.php">
<?php print "$front_modipass"; ?></a>
<?php
}
?>
</td>
</tr>
<tr>
<td>
</td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>