Bernardo: Durch Checkboxen generiertes Array bleibt leer

Beitrag lesen

Danke,

hier nochmal der komplette Code bis zu der Stelle. Fällt dir was auf?

Gruß
Bernardo

  
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"  
     "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">  
  
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de" lang="de">  
<head>  
  
<title>Vielen Dank f&uuml;r Ihre Unterst&uuml;tzung! </title>  
  
<pre><?php print_r($_POST); ?></pre> // entry wird als Array ausgegeben  

  
<?php  
  
if ($_SERVER['REQUEST_METHOD'] == 'GET') die ("Bitte das Formular benutzen! Es wurden keine Daten &uuml;bermittelt.");  
  
  
// Tags entfernen, @ und / umwandeln  
foreach($_POST as $key=>$value) $_POST[$key]=(str_replace("@","AT",$value));  
foreach($_POST as $key=>$value) $_POST[$key]=(strip_tags($value));  
foreach($_POST as $key=>$value) $_POST[$key]=(str_replace("/","SLASH",$value));  
  
  
$company = $_POST["company"];  
$contact_person = $_POST["contact_person"];  
$phone = $_POST["phone"];  
$mail = $_POST["mail"];  
$sector = $_POST["sector"];  
$size = $_POST["size"];  
$fields = $_POST["fields"];  
$education = $_POST["education"];  
$degree = $_POST["degree"];  
$requirements = $_POST["requirements"];  
$soft_skills = $_POST["soft_skills"];  
  
$entry = $_POST['entry'];  
$entry_string = implode ($entry); // Warning: implode() [function.implode]: Argument must be an array in [pfad]/danke.php on [diese Zeile]