[PHP] Alternative to die()????

2003-10-16 Thread Scott Fletcher
I am wondering if there is an better alternative to the die() because it prevent the HTML codes from being send to the browser, including some php echo codes with HTML in it. Thanks.. Scott F. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Alternative to die()????

2003-10-16 Thread Chris Shiflett
--- Scott Fletcher [EMAIL PROTECTED] wrote: I am wondering if there is an better alternative to the die() because it prevent the HTML codes from being send to the browser, including some php echo codes with HTML in it. Please explain what you're wanting to do. This question makes as much sense

Re: [PHP] Alternative to die()????

2003-10-16 Thread Leif K-Brooks
Scott Fletcher wrote: I am wondering if there is an better alternative to the die() because it prevent the HTML codes from being send to the browser, including some php echo codes with HTML in it. If you don't want the page to end, don't use die at all. Simple as that. -- The above message is

Re: [PHP] Alternative to die()????

2003-10-16 Thread Robert Cummings
On Thu, 2003-10-16 at 14:44, Scott Fletcher wrote: I am wondering if there is an better alternative to the die() because it prevent the HTML codes from being send to the browser, including some php echo codes with HTML in it. You can use exit() Cheers, Rob. --

Re: [PHP] Alternative to die()????

2003-10-16 Thread Curt Zirzow
* Thus wrote Chris Shiflett ([EMAIL PROTECTED]): --- Scott Fletcher [EMAIL PROTECTED] wrote: I am wondering if there is an better alternative to the die() because it prevent the HTML codes from being send to the browser, including some php echo codes with HTML in it. Please explain what