wo könnte der fehler sein
ist nur ein ausschnitt vom code..
PHP-Code:
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">';
[B]elseif (count($inputerror) > 1){<---- hier soll der Fehler sein[/B]
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" tabindex="1">
<br />';
echo implode(", ",$inputerror);'</td>
</tr>
<tr>
<td align="left">Passwd:</td>
<td align="right"><input type="password" name="userpw" tabindex="2">
<br />';
echo implode(", ",$inputerror);'</td>
</tr>
<tr>
<td align="left">Wiederholung Passwd:</td>
<td align="right"><input type="password" name="userpwd" tabindex="3">
<br />';
echo implode(", ",$inputerror);'</td>
</tr>
<tr>
<td align="right" colspan="2">
<input class="sendbut" type="submit" name="submit" value="Anmelden" tabindex="4" >
</td>
</tr>
</table>
</form>
</td>
</tr>
Kommentar