Brauche dringend Hilfe 
	
Und hier ist mein PHP-Script dazu
	
Nur leider ist es so, dass es nicht funktioniert.
Ich bitte euch um Hilfe
MfG
NightD_T
					PHP Code:
	
	
<html>
<head>
  <title></title>
</head>
<body>
<table width="800" border="1" align="center" bgcolor="#2569BR">
<tr>
<td style ="font:Verdana, Arial, Helvetica, sans-serif;color: #FFFFFF;font-weight:bold;">
<form action="start.php?section=suchen_result" method="post">
<table width="80%" align="center" border="1" cellpadding="0" cellspacing="0">
  <tr>
    <td>Nachname, Vorname oder Name der Firma:</td>
    <td><input type="text" name="name"></td>
  </tr>
  <tr>
    <td>Adresse:</td>
    <td><input type="text" name="adresse"></td>
  </tr>
  <tr>
    <td>PLZ:</td>
    <td><input type="text" name="plz"></td>
  </tr>
  <tr>
    <td>Ort:</td>
    <td><input type="text" name="ort"></td>
  </tr>
  <tr>
    <td>E-Mail Adresse oder MSN:</td>
    <td><input type="text" name="email"></td>
  </tr>
  <tr>
    <td>Festnetz- oder Mobiltelefonnummer:</td>
    <td><input type="text" name="nummer"></td>
  </tr>
  <tr>
    <td>ICQ:</td>
    <td><input type="text" name="icq"></td>
  </tr>
  </fieldset>
</table>
<input type="submit" name="submit" value="Suchen!">
<input type="reset" name="reset" value="Zurücksetzen">
</form>
</table>
</body>
</html> 
PHP Code:
	
	
<?php
error_reporting(E_ALL);
ini_set('display_errors', '1');
if (empty($_POST['name'])) {
  if(empty($_POST['adresse'])) {
    if(empty($_POST['plz'])) {
      if(empty($_POST['ort'])) {
        if(empty($_POST['email'])) {
          if(empty($_POST['nummer'])) {
            if(empty($_POST['icq'])) {
              echo "Sie haben kein einziges Feld ausgefüllt.";
            }
          }
        }
      }
    }
  }
}
?>
Ich bitte euch um Hilfe
MfG
NightD_T
          
 Moderator
Comment