對不起,我可憐的稱號,但我不是一個experinced程序員,我能想到的一個更好的基本的PHP問題
而不是存儲在陣列中的錯誤,然後顯示在我的一些形式的錯誤列表我會喜歡在輸入欄旁邊顯示他們。它太性感了!
你會建議我怎麼做?
設置一個變量,如$ wrongemail = 1; $ tooshortpass = 1;如果錯誤是錯誤的,然後檢查表格?
if (!preg_match($regex, $email))
$errors[] = "Invalid email address";
if (strlen($password) < 4)
$errors[] = "Password too short";
// No errors?
if (count($errors) == 0)
{
// success
}
else
{
foreach ($errors as $error)
echo '<li>'.$error.'</li>';
}
<table cellspacing="5" cellpadding="0">
<tr>
<td width="70px">Email:</td>
<td><input type="text" name="email" class="textinput" /></td>
<td class="red"><?php if error with email print here ?></td>
</tr>
<tr>
<td>Password:</td>
<td><input type="text" name="password" class="textinput" /></td>
<td class="red"><?php if error with password print here ?></td>
</tr>
<tr>
<td> </td>
<td><input type="submit" /></td>
</tr>
</table>
這不是性感,但它是一個好主意。 – 2010-03-07 22:39:40
建議的標題「在PHP中顯示內聯錯誤消息」 – 2010-03-07 22:40:15