اینم کل کدم:
[PHP]<?php
$username=$_POST['user1'];
$password=$_POST['pass'];
include '../config.php';
$sql= "SELECT * FROM `members` WHERE `user`='$username' AND `pass`='$password'";
$result=mysql_query($sql);
$rows=mysql_num_rows($result);
if($rows==0)
{
header("Location: invalid.php");
}
else
{
setcookie("user","$username");
setcookie("pass","$password");
header("Location: detect.php");
}
mysql_close($link);
?>[/PHP]
---------- Post added at 10:42 PM ---------- Previous post was at 10:38 PM ----------
دوست من شما میتونی از کد زیر
[PHP]echo("<script>location.href='index.php';</script>");[/PHP]
به جای
[PHP]header("Location: index.php");[/PHP]
استفاده کنی. اما من کلا میخوام بدونم مشکل تابع header چیه که گیر میده به کد من.