mysql エラーの代わりに html コンテンツを追加したいので、黒い背景と「エラー」というテキストだけで mysql エラーが発生したときに失敗するのではなく。
mysql_query($query) or die ('error');
このhtmlコンテンツを表示したい:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
<title></title>
<link rel="stylesheet" type="text/css" href="css/style.css" media="all" />
</head>
<body>
<div id="container">
<h1>REGISTRATION WAS UNSUCCESFULL</h1><br/><br/><br/><br/>
<div class="textarea">
<h3>Whoop! Good News we've successfully receieved your registration. So now what we've done, is sent you an email. In this email you will be guided through the final stage of account set-up.<br/><br/>Keep an eye on your inbox and follow the instructions. We hope to see you real soon ;-)</h3>
</div>
<div class="man_reg"><img src="../assets/img/help_support/man.png" alt="" width="210" height="214" /></div></div>
<div id="progress_bar">
<div id="progress"></div>
<div id="progress_text">Registration Completed</div>
</div>
<style>
.textarea{
padding-left:55px;
padding-right:55px;
text-align:center;
}
.man_reg{
margin-top:54px;
margin-left:450px;
}
</style>
</body>
</html>
mysql または die エラーの括弧内に html コンテンツを挿入するだけではありませんか?
そのようです:
mysql_query($query) or die ('HTML CONTENT HERE!');