Hello everyone!
I have some security validation with Sessions in my site, Firefox is passing the test OK, but IE can't pass session checking, why???
MY CODE, first I validat user and pass and after I open the session var "user"
<?php
if((strlen($number)<8) || ($typo=="") || ($username=="") || ($password=="")){
header("Location: index.php?errorusuario=Rellene todos los campos");
}else{
$conn = mysql_connect("","","");
mysql_select_db("ac7018",$conn);
$ssql = "SELECT * FROM users WHERE username='$username' and password='$password'";
$rs = mysql_query($ssql,$conn);
if (mysql_num_rows($rs)!=0){
session_start();
$_SESSION['user'] = session_id();
Following page:
<?php
session_start();
if (!session_is_registered("user")) {
header("Location: getthefoutofhere.php");
exit();
}