我想添加 html 内容来代替 mysql 错误,所以当我得到一个只有黑色背景和文本“错误”的 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 的括号内插入 html 内容还是会出错?
像这样:
mysql_query($query) or die ('HTML CONTENT HERE!');