problema header
Scris: Dum Aug 15, 2010
am eroarea asta in pagina asta
linia 26 este al 2-lea header ... care ar fi problema ?
Cod: Selectaţi tot
Warning: Cannot modify header information - headers already sent by (output started at /public_html/insert-anunt.php:2) in /public_html/insert-anunt.php on line 26
Cod: Selectaţi tot
<?php
require_once('config.php');
if($_POST['nume']!=null && $_POST['prenume']!=null && $_POST['regiune']!=null && $_POST['email']!=null && $_POST['telefon']!=null && $_POST['categorie']!=null && $_POST['tipanunt']!=null && $_POST['produs']!=null && $_POST['vechi']!=null && $_POST['titlu']!=null && $_POST['descriere']!=null && $_POST['pret']!=null && $_POST['valuta']!=null){
$nume=$_POST['nume'];
$prenume=$_POST['prenume'];
$regiune=$_POST['regiune'];
$email=$_POST['email'];
$telefon=$_POST['telefon'];
$categorie=$_POST['categorie'];
$tipanunt=$_POST['tipanunt'];
$produs=$_POST['produs'];
$vechi=$_POST['vechi'];
$titlu=$_POST['titlu'];
$descriere=$_POST['descriere'];
$pret=$_POST['pret'];
$valuta=$_POST['valuta'];
$query="INSERT INTO `vcg` (`nume`,`prenume`,`regiune`,`email`,`telefon`,`categorie`,`tipanunt`,`produs`,`vechi`,`titlu`,`descriere`,`pret`,`valuta`) VALUES ('".$nume."','".$prenume."','".$regiune."','".$email."','".$telefon."','".$categorie."','".$tipanunt."','".$produs."','".$vechi."','".$titlu."','".$descriere."','".$pret."','".$valuta."')";
mysql_query($query) or die(mysql_error());
$row['id'] = mysql_insert_id();
header('Location: anunt.php?id='.$row['id']);
}else{
header('Location: post-v-c-g.php');
}
?>