<?php
require_once('auth.php');
?>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Main Page!!!</title>
</head>
<body leftmargin="0" topmargin="0">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td colspan=2> You are now logged in!!</td>
</tr>
<tr>
<td width="180" align="left" valign="top" rowspan=2>
<table class="menuleft" height="400" width="100%" border="0" cellspacing="0" cellpadding="0">
<tr><td>
</td></tr>
<td width="607" valign="top">
<center>
<?php
echo "User logged:".$auth->username."<br>";
echo "Userid:".$auth->userid;
?>
</td>
</tr>
<tr>
<td>Success!!</td>
</tr>
</table>
</body>
</html>
|