Tagged Questions
12
votes
1answer
133 views
PHP: Modern version of “or die();”
When I first started learning PHP, I would write queries similar to the one here:
$result = mysql_query("SELECT * FROM `table`") or die(mysql_error());
What is the best, present-way to achieve the ...
10
votes
5answers
753 views
Can I catch exit() and die() messages?
I'd like to be able to catch die() and exit() messages. Is this possible? I'm hoping for something similar to set_error_handler and set_exception_handler. I've looked at register_shutdown_function() ...
7
votes
5answers
120 views
Multiple instances of header() + die() in single code line
I'm trying to manipulate a PHP script so that it redirects to a particular URL instead of giving me a MySQL error. So I went from this...
$qs = mysql_query("SELECT url FROM $table WHERE `id` = ...
4
votes
1answer
120 views
PHP Does die() do an ob_end_flush()?
I can't seem to find a good answer on this anywhere. If I am running output buffering, and a die() is fired, does that kick off an ob_end_flush() as well?
4
votes
6answers
266 views
PHP Die question
Just a quick question. Say a call a method like so
mysql_pconnect("server","tator_w","password")
or die("Unable to connect to SQL server");
Can I have the 'die' call a method rather ...
3
votes
7answers
118 views
Handling errors and continuing execution in PHP script
I don't want to "die()" when it concerns only a small part of the script and I tried:
$result = mysql_query($sql) or echo("error with responses");
But it generated an error. How do I just give out ...
2
votes
3answers
95 views
PHP: Utilizing exit(); or die(); after header(“Location: ”);
I have a user login/registration system that simply uses
// execute queries, set cookies, etc. here
header("Location: " . getenv("HTTP_REFERER"));
I recently read a post about exit(); and die(); ...
2
votes
3answers
75 views
How can I eliminate the use of die() in this script, so that the HTML at the bottom still runs?
When I initially wrote this script, the site design did not require the execution of the html after the die() functions. Now it does. I realize I can copy the end of the HTML code into each of the ...
2
votes
3answers
177 views
Does “mysql_query() or die()” leave open mysql connection?
Does "mysql_query() or die()" leave open mysql connection?
My thought is that it calls die() but it never calls mysql_close() on the connection...
Thanks.
2
votes
4answers
138 views
PHP: die or check results?
I am implementing LDAP with PHP which is going fairly easily I must say. However I have a question regarding the use of die() or checking function returns. From the below code (taken from here), what ...
2
votes
6answers
1k views
What is the difference between echo('exit'); die; and die('exit');?
I have seen some code do this:
if(something){
echo 'exit from program';
die;
}
...more code
And others that just use die:
if(something) die('exit from program');
...more code
Is there ...
2
votes
4answers
83 views
PHP problem with die()
So, I have this code:
} else {
$photograph_moderation = new PhotographModeration($this->photograph_id);
$photograph_moderation->purgePhotograph();
...
2
votes
4answers
2k views
How to include files with die(); function?
file1.php and file2.php with die(); function.
include.php:
<? include 'file1.php';
include 'file2.php' ?>
file1.php
<? echo 'included'; die(); ?>
file2.php
<? echo 'not ...
1
vote
1answer
86 views
How can i prevent eval and other errors to 'die'?
I've made a daemon acting like a cron.
That daemon will search all the modules pages for a file called 'modulename.cron.php' and execute them via eval().
My problem is that if some error occurs, i ...
1
vote
4answers
140 views
how to get a detailed error report when a php-mysql script fails?
How do i get a detailed error description during a php-mysql script run?
I have the following statements where the script fails and displays the custom error message - the contents of the "or die".
...
1
vote
4answers
186 views
MySQL update or insert or die query
Is it valid to do something like this, I never see more than 1 or operator:
$insert = 'INSERT into fhours (' .$cols . ') VALUES ('.$query.')';
$update = sprintf("UPDATE fhours SET %s WHERE ...
1
vote
2answers
106 views
Newer version of “… or die(…”
A long time ago I used to use "or die" in my PHP code. Especially like this:
$q = mysql_query('......') or die(mysql_error());
Obviously, that's pretty shameful these days, but the X or Y principle ...
1
vote
3answers
204 views
Appropriate use of die()?
Note: I am using output buffering. It's just wrapped in the head() and foot() functions.
I create pages in my current PHP project by using the following template:
<?php
include 'bootstrap.php';
...
1
vote
4answers
457 views
How to execute a perl script within php and capture error messages?
I am trying to execute a Perl script like so:
/usr/bin/ec2-consistent-snapshot 'vol-dr3131c2'
When the Perl script fails it exits using 'die' and prints out an error message. I can see that error ...
1
vote
5answers
164 views
Specify page/line when throwing die()?
I am using PHP 4, the only way I know of to cause an error and stop everything is calling die(). But in case I run into the error later and don't remember where its coming from I would like to specify ...
1
vote
9answers
483 views
How Can I Display Static HTML After I've Used die() in a PHP Block?
Let's say I have some code like this:
<html>
<head><title>Title</title></head>
<body>
<?php
if (!$someCondition){
die();
}
else{
#Do something
}
?>
...
0
votes
2answers
89 views
Php: kill script or premature return?
In PHP, i can use die() to kill the whole script. However, I want the script to execute up to a certain point and quit without the whole script dieing.
Something like this:
echo "Hello, what is your ...
0
votes
3answers
226 views
php OOP Exceptions or die()?
I am developing some project. And I want to control different errors. I know that in all popular frameworks and php projects there are different Exceptions. But I think that is not required work. If ...
0
votes
3answers
347 views
CodeIgniter: View doesn't load if I use die() function
I have the following code. Checks if the user is logged in or not.
When the variable $is_logged_in is not set or is False, I load a message view.
Unfortunately, at the same time the system loads the ...
0
votes
5answers
397 views
PHP: multiple commands in die/exit
when it gives a error I want him to do 2 things.
echo nl2br($qVraagOp);
mysql_error();
so i thougth:
$rVraagOp = mysql_query( $qVraagOp ) or die( echo nl2br($qVraagOp); mysql_error(); );
I can ...
0
votes
5answers
310 views
PHP and HTML integration
I have a php file that contains a HTML form, then PHP logic, then an HTML footer...in that order.
I am trying to get the values from the form into some php validation logic in the botton of the page ...
0
votes
2answers
419 views
How to trap a PHP script error which dies (Perl has eval)?
Hi
I've got a script which works fine on our development server but dies on the clients server.
error_reporting(E_ALL);
if (function_exists('simplexml_load_file')) echo "function exists";
if ...
-1
votes
2answers
171 views
PHP die PREVENTING White Screen of Death?
I am trying to enumerate through a perfectly valid array using php 5.3.5 on Joomla 1.5. Whenever I try to access the array I get the white screen of death. If I add a die() statement right after ...
-1
votes
3answers
309 views
alternative of `die()` in php [closed]
I have the following script
<?php
echo "I am alive<br>";
die("I am dying<br>");
echo ("Dead");
?>
The output that I get is
I am alive
I am dying
Is there ...
-2
votes
6answers
60 views
PHP die and exit don't stop script evaluation? [closed]
I was doing some testing in PHP and had the following code:
$q = array('test space'=>'success');
echo $q['test space'];
die();
$r = array(array('1','2'),array('3','4'),('5','6'));
I was testing ...
-2
votes
7answers
2k views