Io ho un problema
ho creato questo script:
Codice PHP:
/*---------------------------------------------------+
| PHP-Fusion 6 Content Management System
+----------------------------------------------------+
| Copyright © 2002 - 2006 Nick Jones
| http://www.php-fusion.co.uk/
+----------------------------------------------------+
| Released under the terms & conditions of v2 of the
| GNU General Public License. For details refer to
| the included gpl.txt file or visit http://gnu.org
+----------------------------------------------------*/
require_once "maincore.php";
require_once "subheader.php";
require_once "side_left.php";
$error = $_GET['errid'];
// variabili errori
$not_found = "404";
$unauthorized = "401";
$forbidden = "403";
//variabile Pagina
$html ="<img src=/immagini/error.png><br></BR><br></BR><a href=javascript:history.back(-1)>Torna alla pagina da cui sei arrivato cliccando qui</a><br></br><h3><div align=center>L'errore è stato registrato nel Database</div></h3>";
if ($error == $not_found)
{
$head = "Errore 404<br></br>Pagina non trovata<br></br>";
$titolo = "Errore 404 | Pagina non trovata";
$errore = "<div align=center>404</div>";
}
else if ($error == $unauthorized)
{
$head = "Errore 401<br></br>Richiesta Autenticazione<BR></BR>";
$titolo = "Errore 401 | Richiesta Autenticazione";
$errore = "<div align=center>401</div>";
}
else if ($error == $forbidden)
{
$head = "Errore 403<br></br>Accesso Vietato<br></br>";
$titolo = "Errore 403 | Accesso Vietato";
$errore = "<div align=center>403</div>";
}
else
{
header("location: index.php");
$errore = "";
}
opentable($titolo);
echo "<div align=center><h1> $head </h1>
<br> $html </div>";
closetable();
require_once "side_right.php";
require_once "footer.php";
//connessione al DB
include "connessione.php";
include "ip/index.php";
//si connette
//Script Powered by 1ronCh4ng
$ip = $_SERVER['REMOTE_ADDR'];
$BSO = $_SERVER['HTTP_USER_AGENT'];
$data = date('Y-m-d');
$ora = date('H:i:s');
$refer = $_SERVER['HTTP_REFERER'];
$nazione = "<div align=center><img src=/ip/flags/$two_letter_country_code.gif width=30 height=15><br></br>$two_letter_country_code</div>";
if ($refer == "")
{
$rifer = "No Link";
}
else
{
$rifer = "<a href=$refer>$refer</a>";
}
if (iADMIN)
{
}
else
{
if ($errore == "")
{
header ("location: index.php");
}
else
{
mysql_query("INSERT INTO `log_err` (`ID`, `BrowserSO`, `IP`, `Errore`, `Data`, `Ora`, `Verificato`, `Nazione`) VALUES (NULL, '$BSO', '$ip', '$errore', '$data', '$ora', '$rifer', '$nazione')");
}
}
in locale mi inserisce normalemente i dati ma sul sito no, potete darmi una dritta? grazie