View Single Post
ישן 23-12-08, 15:33   # 7
bilopay
חסום
 
מיני פרופיל
תאריך הצטרפות: Aug 2008
הודעות: 452

bilopay לא מחובר  

עשיתי:
HTML קוד:
<tr>
<td width="250" height="113" bgcolor="#D3D3D3">
<table>
<tr>
<td>
<script type="text/javascript">
function submitForm()
{
  document.form.submit();
}
</script>
<form name="myform" action="index.php" method="POST">
<font color="#000000" face="arial" style="font-size:12pt;">
שם משתמש:
</font>
</td>
<td>
<input type="text" name="username">
</td>
</tr>
<tr>
<td>
<font color="#000000" face="arial" style="font-size:12pt;">
סיסמה:
</font>
</td>
<td>
<input type="text" name="password">
</td>
</tr>
</table>
<center><input type="image" name="mylogin" src="images/conect.gif" onclick="submitForm></center>
</form>
</td>
</tr>
וב php:
PHP קוד:
<?
if (!isset($_POST['mylogin']))
{}
else
{
$username htmlspecialchars$_POST['username'] ) ;
$password htmlspecialchars$_POST['password'] ) ;
if (!empty(
$_POST['username']))
{}
else
{
$usernameeror '*חובה להכניס שם משתמש<br />';}
if (!empty(
$_POST['password']))
{}
else
{
$passworderor '*חובה להכניס סיסמה<br />';}
if (!empty(
$_POST['username']) && !empty($_POST['password']))
{}
else
{echo 
'<u>השגיעות הבאות התרכשו</u><br />' $usernameeror '' $passworderor '';}
}
?>
וזה עדיין לא עובד
  Reply With Quote