
31.07.2009, 18:23
|
|
Участник форума
Регистрация: 17.05.2008
Сообщений: 102
С нами:
9466141
Репутация:
74
|
|
PHP код:
<form method="POST" action="">
<input type="text" name="user">
<input type="password" name="pass">
<input type="submit" value="Eneter">
<? if((isset($_POST['pass'])) and (isset($_POST['user'])))
{
if (($_POST['pass']=='password') and ($_POST['user']=='user'))
{ include('./yes.html');}
else include('./no.html'); }
так?
|
|
|