Ciao ragazzi,
chiedo il vostro aiuto per risolvere questo problema odioso...
Sto scrivendo un sito in php con utilizzo del DBMS Mysql ma mi sono piantato in un ostacolo odioso: il sito si visualizza solo con Firefox mentre con Internet Explorer mi viene ritornato l'errore: Impossibile Visualizzare la pagina. Ribadisco che con Firefox funziona tutto alla perfezione. Vi posto il codice della mia pagina index.php che dovrebbe essere visualizzata:
<?php
/*Verifica credenziali tramite connessione al database degli utenti*/
session_start();
$_SESSION['log']='no';
global $login_ok;
$login_ok=0;
if ($_REQUEST["log"]=="Login") {
$link = mysql_connect('localhost', 'fanta', 'master')
or die('Connessione fallita: ' . mysql_error());
mysql_select_db('fanta_master') or die('Selezione DB fallita: ' . mysql_error());
$query = "Select * from utente";
$rq = mysql_query($query);
/*Se la query ha riportato risultati*/
if (mysql_num_rows($rq)>0) {
while ($row = mysql_fetch_assoc($rq)) {
/*Verifica credenziali*/
if ( ($_REQUEST["user"]==$row["username"]) &&
($_REQUEST["psw"]==$row["password"]) ) {
$_SESSION['log']='yes';
$_SESSION['usr']=$row["username"];
$target = "Location: home.php?ID=".$row['username'];
header($target);
mysql_close($link);
exit();
}
} /*Fine while*/
$login_ok=1;
} /*fine if*/
else {
die ('Nessun utente presente nel db');
}
mysql_close($link);
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>PES 2008 - Fanta Master League</title>
<style type="text/css">
body {
background-color: #000000;
}
.style3 {
font-family: Arial, Helvetica, sans-serif;
color: #FFFFFF;
}
</style>
</head>
<body>
<form method="GET" action="index.php">
<table border="0" align="center">
<tr>
<th valign="top" scope="col">[img]pes_2008.jpg[/img]</th>
<th width="200"></th>
<th>
<table align="left" bgcolor="#006400" frame="box" bordercolor="FFFFFF" >
<tr>
<td></td>
<td><font class="style3" size="2" >Loggati al sistema!! </font></td>
</tr>
<tr height="20" ></tr>
<tr>
<td><font class="style3" size="2" >Username: </font></td>
<td><input type="text" name="user" /></td>
</tr>
<tr>
<td><font class="style3" size="2" >Password: </font></td>
<td><input type="password" name="psw" /></td>
</tr>
<tr height="30" ></tr>
<tr>
<td></td>
<td><input name="log" type="submit" id="log" value="Login" /><td>
</tr>
</table>
</th>
</table>
</form>
<p align="center">
<?php
if ($login_ok==1) echo '<font size="2" color="#FF0000">Username/Password errati</font>';
?>
</p>
<p align="center">
<font size="2" color="#FFFFFF">Webmaster: Bomberjava (e-mail: bomberjava@hotmail.it)</font>
</p>
</body>
</html>
Magari potrebbe essere il comando start_session() che da problemi con IE?????
Vi prego aiutatemi.......
Ciao a tutti!!!!