| 35 |
?> |
?> |
| 36 |
<? |
<? |
| 37 |
#=============main() |
#=============main() |
| 38 |
if ($username == "") { |
if ($_REQUEST['username'] == "") { |
| 39 |
?> |
?> |
| 40 |
No username supplied, please click the back button and enter in a username. |
No username supplied, please click the back button and enter in a username. |
| 41 |
<? |
<? |
| 42 |
session_destroy(); |
session_destroy(); |
| 43 |
} else { |
} else { |
| 44 |
$username = strip_tags($username); |
$username = strip_tags($_REQUEST['username']); |
| 45 |
$passwd = strip_tags($passwd); |
$passwd = strip_tags($_REQUEST['passwd']); |
| 46 |
if (find_person($username, $passwd)) { |
if (find_person($username, $passwd)) { |
| 47 |
|
|
| 48 |
echo "<META http-equiv=\"refresh\" content=\"0;URL=gpgmain.php?";?><?=SID?> |
echo "<META http-equiv=\"refresh\" content=\"0;URL=gpgmain.php?";?><?=SID?> |