This question already has an answer here:
- Put div in MYSQL die 3 answers
I'm wanting to add html content in place of a mysql error, so rather than on fail when I get a mysql error with just a black background and the text 'error'.
mysql_query($query) or die ('error');
I want it to show this html content:
<!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>
Would I not just insert the html content within the brackets of the mysql or die error?
like so:
mysql_query($query) or die ('HTML CONTENT HERE!');


mysql_functions? They are deprecated and better alternatives exist. – DCoder Mar 6 at 10:19