Oggetto non trovato! IE, Chrome in localhost

feelthemusic

Nuovo Utente
29 Nov 2012
14
0
0
Salve a tutti, espongo la situazione: ho creato una pagina html con un menu orizzontale contente quattro voci(home, dove siamo, menu, contatti). Nella pagina contatti è contenuto un form per l'invio di email tramite php. Il problema è questo: quando apro il sito in localhost tutti i link del menu funzionano fuorche quello dei contatti che invece mi visualizza un messaggio con scritto "Oggetto non trovato". Questo errore però me lo da solo con IE e Chrome mentre con Opera, Mozilla e Safari funziona benissimo. Non so se mi sono esposto bene cmq qualcuno sa aiutarmi? grazie in anticipo :)
 
Ecco il codice di contatti.html:
HTML:
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-15" />
<meta http-equiv="content-script-type" content="text/javascript" />
<meta http-equiv="content-style-type" content="text/css" />

<link rel="stylesheet" type="text/css" href="layoutctti.css" />
<!--[if IE]>
<link rel="stylesheet" type="text/css" href="iectti.css" />
<![endif]-->

</head>
<body>

<div id="immagini">
<img src="contatti2.gif" align=right width=220 height=60>
</div>
<div id="content">
 <div id="text">  
  <h3>CONTATTI</h3>
 </div>
</div>

<br><br>

<div id="box">

<div id="form">

  <form action="send.php" method="POST">
<table>
 <tr>
   <td width="30%"><strong>Indirizzo E-mail </strong></td>
   <td><input type="text" name="mail"></td>
 </tr>
 <tr>
   <td><strong>Oggetto</strong></td>
   <td><input type="text" name="oggetto"></td>

 </tr>
  
  <tr>
   <td><strong>Messaggio</strong></td>
   
   <td><textarea name="testo" style="resize: none;" cols=40 rows=10></textarea></td>
  </tr>
<tr>&nbsp;</tr>
<tr> 
 <td colspan=2>
 <div align="center">
  <input type="submit" name="submit" value="INVIA"></td>
 </div>
</tr>
<tr>

 <td colspan=3 align=center>
  
</td>
</tr>
 </form>
</table>

<div id="testo">
<img src="logo1.gif" height=20 width=170 align=left>
<img src="focaccia.gif" class="imgfocacce" align=right;>
<br><br>
<div id="textcontent">
<br>
<br>
<b>Tel</b>: 055642910<br>
<b>Fax</b>: 053443928<br>
<b>E-mail</b>: [email protected]
<hr style="border:2px solid #990000; color: #990000;">
<b>Orario di apertura</b>:<br>
  -<b>Martedi-Venerdi</b>: 12.00-15.00/19.00-00.00<br> 
  -<b>Sabato-Domenica</b>: 19.00-00.00<br>
  -<b>Lunedi</b>: chiuso
</div>

</div>


</div>
  

</div>

</body>
</html>

SEND.PHP
PHP:
 <?php
  header('P3P: CP="CAO PSA OUR"'); 
if (isset($_POST['submit'])) {
 // L'INDIRIZZO DEL DESTINATARIO DELLA MAIL
 $to = "[email protected]";
 
 // IL SOGGETTO DELLA MAIL
 $subject = "Email";
 
 $body = "Contenuto del modulo:\n\n";
 $body .= "oggetto: " . trim(stripslashes($_POST["oggetto"])) . "\n";
 $body .= "testo: " . trim(stripslashes($_POST["testo"])) . "\n";
 $body .= "mail: " . trim(stripslashes($_POST["mail"])) . "\n";
 

 // INVIO DELLA MAIL
 if(@mail($to, $subject, $body)) { // SE L'INOLTRO E' ANDATO A BUON FINE...
 
 echo "<script type=\"text/javascript\">alert(\"Messaggio inviato con successo!\"); history.go(-1)</script>";
 
 } else {// ALTRIMENTI...
 
 echo "<script type=\"text/javascript\">alert(\"Si sono verificati problemi nell'invio della mail. Riprovare piu tardi.\"); history.go(-1)</script>";
 
 }
 }
 ?>
 
Ultima modifica di un moderatore:
ciao
così ad uno sguardo superficiale non vedo errori negli script.
immagino che nel menù tu abbia qualcosa del genere
<a href="contatti.html">contatti</a>
quindi non capisco perche quell'errore
 

Discussioni simili