我需要你的帮助..每当表单出现错误时,我都会尝试使文本框变为红色...
这是我能够做到的。但是当我提交前台时,我在表单中得到一个未定义索引error_css
if (isset($_POST['submit'])) {
if (empty($_POST['username'])) {
$error_css='background-color:red';
}
形式
<label for="username">Username:</label>
<input id="username" type="text" value="<?php if(isset($_POST['username'])){ echo $_POST['username']; } ?>" name="username" title='Username' />
谢谢你的时间...