エラーを赤色で表示するphpコードを書きました。しかし、どういうわけか、これはうまくいかないようです。これが私のコードです:
<?php
...
if(!$name || !$email || !$contact || !$itemid){
//if not display an error message
echo "<span style="color: red;" /><center>Fields marked with <strong>( * ƥ</strong> are mandatory!</center></span>";
}else{...
?>