Hallo PHP Leut's
hab wieder mal ne Prob oder bin zu blind den Fehler zu sehen
QUELLCODE
<?php
error_reporting(E_ALL);
ini_set("display_errors","1");
include("scripts/php/date.inc.php3");
include("scripts/php/checkit.php");
if(!isset($_POST['submit']))
{
if (!checkit::isAlpha($_POST['user'],true))
{
$inputerror[] = "Deinen Username fehlt<br>";
}
if (!checkit::isAlpha($_POST['passwd'],true))
{
$inputerror[] = "Stimmt dein Passwort<br>";
}
if (!checkit::isAlphaNum($_POST['passwda'],true))
{
$inputerror[] = "Bitte Ihre Strasse eingeben<br>";
}
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Erotische Webverwaltung</title>
<script language="JavaScript" src="scripts/js/showpanel.js" type="text/javascript"></script>
<link href="scripts/css/layout.css" rel="Stylesheet" type="text/css">
</head>
<body>
<table align="center" cellpadding="2" cellspacing="2" border="0" width="800">
<tr>
<td align="right" valign="top">
Datum: <?php echo $wochentag.', ' .$datum ?><br />
Uhrzeit: <?php echo $uhrzeit ?> Uhr<br />
IP-Adresse: <?php echo $IP ?> Host: <?php echo $host ?>
</td>
</tr>
<tr>
<?php
if ((count($inputerror) == 1) && ($inputerror))
{
echo'
<td align="center" valign="middle" height="85" class="loginerror">
Bitte kontrollieren Sie das Feld: '.$inputerror[0].'!
</td>';
}
echo'
</tr>
<tr>
<td align="center" valign="top">
<form action="'. $PHP_SELF.'" method="post">';
elseif (count($inputerror) > 1){<--- Hier soll der Fehler sein
echo'
<table align="center" cellpadding="2" cellspacing="2" border="0" width="450">
<tr>
<td align="left">Username:</td>
<td align="right"><input type="Text" name="user"'.
if($_POST['user'] !="") {
echo 'value="'.$_POST['user'].'"';
}.' tabindex="1"><br />
echo '<span class="loginerror"> implode(", ",$inputerror),'</span></td>
</tr>
<tr>
<td align="left">Passwd:</td>
<td align="right"><input type="password" name="userpw"'.
if($_POST['passwda'] !="") {
echo 'value="'.$_POST['passwda'].'"';
}.' tabindex="2"><br />
echo '<span class="loginerror"> implode(", ",$inputerror),'</span></td>
</tr>
<tr>
<td align="left">Wiederholung Passwd:</td>
<td align="right"><input type="password" name="userpwd"'.
if($_POST['passwdb'] !="") {
echo 'value="'.$_POST['passwdb'].'"';
}.' tabindex="3"><br />
echo '<span class="loginerror"> implode(", ",$inputerror),'</span></td>';
}
?>
Die Fehlermeldung die ich erhalte
Parse error: parse error, unexpected T_ELSEIF in /srv/www/htdocs/www.erotischeweb.de/admin/index.php on line 61
wo bitte ist der fehler.. Hilfe
Danke vorab
Gruß
matze
hab wieder mal ne Prob oder bin zu blind den Fehler zu sehen
QUELLCODE
<?php
error_reporting(E_ALL);
ini_set("display_errors","1");
include("scripts/php/date.inc.php3");
include("scripts/php/checkit.php");
if(!isset($_POST['submit']))
{
if (!checkit::isAlpha($_POST['user'],true))
{
$inputerror[] = "Deinen Username fehlt<br>";
}
if (!checkit::isAlpha($_POST['passwd'],true))
{
$inputerror[] = "Stimmt dein Passwort<br>";
}
if (!checkit::isAlphaNum($_POST['passwda'],true))
{
$inputerror[] = "Bitte Ihre Strasse eingeben<br>";
}
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Erotische Webverwaltung</title>
<script language="JavaScript" src="scripts/js/showpanel.js" type="text/javascript"></script>
<link href="scripts/css/layout.css" rel="Stylesheet" type="text/css">
</head>
<body>
<table align="center" cellpadding="2" cellspacing="2" border="0" width="800">
<tr>
<td align="right" valign="top">
Datum: <?php echo $wochentag.', ' .$datum ?><br />
Uhrzeit: <?php echo $uhrzeit ?> Uhr<br />
IP-Adresse: <?php echo $IP ?> Host: <?php echo $host ?>
</td>
</tr>
<tr>
<?php
if ((count($inputerror) == 1) && ($inputerror))
{
echo'
<td align="center" valign="middle" height="85" class="loginerror">
Bitte kontrollieren Sie das Feld: '.$inputerror[0].'!
</td>';
}
echo'
</tr>
<tr>
<td align="center" valign="top">
<form action="'. $PHP_SELF.'" method="post">';
elseif (count($inputerror) > 1){<--- Hier soll der Fehler sein
echo'
<table align="center" cellpadding="2" cellspacing="2" border="0" width="450">
<tr>
<td align="left">Username:</td>
<td align="right"><input type="Text" name="user"'.
if($_POST['user'] !="") {
echo 'value="'.$_POST['user'].'"';
}.' tabindex="1"><br />
echo '<span class="loginerror"> implode(", ",$inputerror),'</span></td>
</tr>
<tr>
<td align="left">Passwd:</td>
<td align="right"><input type="password" name="userpw"'.
if($_POST['passwda'] !="") {
echo 'value="'.$_POST['passwda'].'"';
}.' tabindex="2"><br />
echo '<span class="loginerror"> implode(", ",$inputerror),'</span></td>
</tr>
<tr>
<td align="left">Wiederholung Passwd:</td>
<td align="right"><input type="password" name="userpwd"'.
if($_POST['passwdb'] !="") {
echo 'value="'.$_POST['passwdb'].'"';
}.' tabindex="3"><br />
echo '<span class="loginerror"> implode(", ",$inputerror),'</span></td>';
}
?>
Die Fehlermeldung die ich erhalte
Parse error: parse error, unexpected T_ELSEIF in /srv/www/htdocs/www.erotischeweb.de/admin/index.php on line 61
wo bitte ist der fehler.. Hilfe
Danke vorab
Gruß
matze
Kommentar