On Thu, October 5, 2006 4:43 pm, sit1way wrote:
> I'd like to catch errors and send POST vars to my error display page.
>
> So:
>
> try {
>     $r = new query($sql);
>
>     if(!$r) {
>          throw new Exception($err);
>     }
> }
> catch (Exception $e) {
>     $this->err_msg = $e->getMessage();
>
>     /* somehow kick user to error display screen with POST vars */

require 'error_screen';
exit;

>     ?????
> }

Why would you chew up HTTP connections and bounce traffic
back-and-forth to just read a file off your own server's hard drive?

I never have understood that...

-- 
Some people have a "gift" link here.
Know what I want?
I want you to buy a CD from some starving artist.
http://cdbaby.com/browse/from/lynch
Yeah, I get a buck. So?

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to