Jump to content

sql query die customized


jaxdevil

Recommended Posts

I want to change the die function of my sql query, if the sql query fails I want to have the following piece of code executed:

 

<body onload="parent.main.location.href='http://<?=$_SERVER[HTTP_HOST]?>/pages/mpl_error.php'">

 

My current statement is:

 

		$sql = "INSERT INTO `products` ( $table_products ) VALUES ( $insert_products_str )";
	mysql_query($sql) or die('SQL ERROR:'.mysql_error());

 

So instead I want to do something like:

 

		$sql = "INSERT INTO `products` ( $table_products ) VALUES ( $insert_products_str )";
	mysql_query($sql) or print "<body onload=\"parent.main.location.href='http://<?=$_SERVER[HTTP_HOST]?>/pages/mpl_error.php\'">" die('SQL ERROR:'.mysql_error());

 

Would that work? If not any ideas?

 

Thanks in advance,

SK

Link to comment
Share on other sites

Your best bet is to use something like this

 

<pre><?php

function someFunc() {
return FALSE;
}

someFunc() or die("
<script type=\"text/javascript\">
<!--
window.location.href='http://{$_SERVER[HTTP_HOST]}/pages/mpl_error.php'
// -->
</script>
");

?></pre>

 

You may want to add a <noscript> in there with a meta redirect incase JS is turned off.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.