Ik krijg de onderstaande fout weet iemand waar dit aan ligt wat mijn fout is ??
Warning: Cannot modify header information - headers already sent by (output started at /customers/epartyzone.nl/epartyzone.nl/httpd.www/upload_afbeelding.php:2) in /customers/epartyzone.nl/epartyzone.nl/httpd.www/upload_afbeelding.php on line 21
<?
$naam = $_POST['naam'];
if ($naam){
$email = $_POST['email'];
$geslacht = $_POST['geslacht'];
$leeftijd = $_POST['leeftijd'];
$woonplaats = $_POST['woonplaats'];
$provincie = $_POST['provincie'];
$site = $_POST['site'];
$werk = $_POST['werk'];
$hobbies = $_POST['hobbies'];
$bericht = $_POST['bericht'];
include("connect.php");
$query = "INSERT INTO `verkiezing` ( `naam` , `email` , `geslacht` , `leeftijd` , `woonplaats` , `provincie` , `site` , `werk` , `hobbies` , `bericht` , `file` ) VALUES ( '$naam', '$email', '$geslacht', '$leeftijd', '$woonplaats', '$provincie', '$site', '$werk', '$hobbies', '$bericht' , '$filenaam' )";
mysql_query($query);
header("Location: upload_afb.php?nummer");
exit;
}
?>
946 views