View Single Post
ישן 02-04-07, 12:46   # 1
username1
חבר פורום
 
מיני פרופיל
תאריך הצטרפות: Mar 2007
הודעות: 182

username1 לא מחובר  

שגיאה בקובץ התחברות ( PHP )

הקובץ מכיל את הקוד הנ"ל:

PHP קוד:
<center><font face=arial size=3>
<? 
include "includes/config.php";
include 
"includes/includes/db.php";

$submit $_POST['submit'];
$username $_POST['username'];
$password $_POST['password'];

if(
$submit) {
$sql 
SELECT * 
FROM members WHERE 1 
AND username = '$username' 
AND password = '$password' 
"

    
$result mysql_query($sql) or die("בעייה : " mysql_error()); 
    while (
$row mysql_fetch_array($result)) { 
        
$username $row["username"]; 
        
$password $row["password"];
        
$id $row["id"];
        }
if(!
mysql_num_rows($result)) {
echo 
"שם משתמש או סיסמה שגויים";
exit();
}

    
setcookie("user"$username,time() + 3600);
    
setcookie("pw"$passwordtime() + 3600);
    
setcookie("id"$idtime() + 3600);
echo 
"<meta http-equiv='refresh' content='5; url=index.php'>";
}
?> </center></font>
והשגיאה:
ציטוט:
Warning: Cannot modify header information - headers already sent by
אשמח לעזרה.
__________________
סטיבן, איש מכירות של חברת Sprint-Serv
מייל: Steven@Sprint-Serv.net
תא קולי: 057-6500000 מספר מנוי 3333 ( נא השאירו הודעות בתא הקולי ואחזור אליכם בהקדם )

I close my eyes and I can see you dead
  Reply With Quote