Errore:
codice:
Warning: Cannot modify header information - headers already sent by (output started at C:\Programmi\Apache Group\Apache2\htdocs\veicoli\inserisci.php:28) in C:\Programmi\Apache Group\Apache2\htdocs\veicoli\inserisci.php on line 30
Codice:

codice:
<?php
 include 'accedi_db.php';
 
 $marca=$_POST['marca'];
 $modello=$_POST['modello'];
 $prezzo=$_POST['prezzo'];
 
 $inser="INSERT INTO macchine (MARCA,MODELLO,PREZZO) VALUES ('$marca','$modello','$prezzo')";
 $risu=mysql_query($inser);
  if (!$risu) 
  {
   print "Errore nell'inserimento del record";
   exit();
  }
  else
  {
   echo "
         <table>
		  <tr>
           <td bgcolor=#B0C4DE height=45 width=1100><font face='arial' size=3><center>Record inserito correttamente</font></center> </td>
          </tr>
		  
		  <tr>
           <td> <font face='arial' size=1><center>Tra pochi secondi si verrà rediretti alla Home Page</font></center> </td>
          </tr>
         </table>
		         		
		";
   }		
  header("Refresh: 3;URL=index.php"); 				
    
?>