مممم اخوي طبقت درس بس مدري ماضبط معي
صورة صفحة في مرفقات
شوف كود html صفحة .
كود PHP:
<from action= ''2.php" method="GET''>
<table border=1 width="400">
<tr>
<td>name</td>
<td><input type= "text" name "f1"></td>
</tr>
<tr>
<td>pass</td>
<td><input type= "text" pass "f2"></td>
</tr>
</tr>
<tr>
<td><input type= "submit" value "Check"></td>
<td><input type= "reset" value "Reset"></td>
</tr>
<table>
<form>
وهذي صفحة php مستخدم دالة GET
كود PHP:
<?php
$name = $ _GET [ 'f1'] ;
$pass = $ _GET [ 'f2'] ;
$name = trim ($name) ;
$pass = trim ($pass) ;
//echo "Name : $name and pass : $pass
if ($name == "uae" and $pass ==123)
echo "okay" ;
}
else {
echo "wrong" ;
}
?>