Raga non so perchè ma non riesco ad inserire i dati nella tabella tramite questo script!!!Non mi da errori ma non fa nulla!!! potreste dargli un okkiatina??Grazie
Codice PHP:
<table width="200" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td height="15" valign="top" class="titolomenu"># Info </td>
</tr>
<tr>
<td class="finestremenuALL">
<strong>Il tuo IP:</strong><br />
<img src="../immagini/menu/icone/item.png" alt="Opzione" width="14" height="11" />
<?php echo $_SERVER['REMOTE_ADDR']; ?><br />
<strong>Il tuo BROWSER:</strong><br />
<img src="../immagini/menu/icone/item.png" alt="Opzione" width="14" height="11" />
<?php echo $_SERVER["HTTP_USER_AGENT"]; ?><br />
<?php
include('connessione.php');
$ip=$_SERVER['REMOTE_ADDR'];
$url=$_SERVER['HTTP_REFERER'];
$data=date("m/d/y");
$sql="INSERT INTO referer (IP,URL,DATA) VALUES('$ip','$url','$data')";
$query=mysql_query($sql,$connessione) or die;
mysql_close($connessione);
?></td>
</tr>
</table>