私はあなたの助けが必要です..フォームにエラーがあるときはいつでもテキストボックスを赤くしようとしています...
これが私ができることです。しかし、フォアを送信すると、フォームにUndefinedIndexerror_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' />
御時間ありがとうございます...