Re: [PHP] basic php question...

2008-11-04 Thread Kaleb Pomeroy
?php header(location: pagetogoto.php); ? There can be no output before this (even whitespace before open php tags) Kaleb On Nov 4, 2008, at 1:41 PM, bruce wrote: and what's the best way to do the redirect sample code would be cool! -Original Message- From: Micah Gersten

Re: [PHP] PHP Dev Facts

2008-10-16 Thread Kaleb Pomeroy
On Oct 16, 2008, at 6:14 PM, Nathan Rixham wrote: Evening All, I'd be /really/ interested to know who uses what! *Procedural or OOP?* OOP Always *Dev OS* OS X *Dev PHP Version* 5.2.x *Live Server OS* OpenSuse/Redhat *Live Server PHP Version* 5.2.x *Which HTTP Server Software

RE: [PHP] Re: PHP Brain Teasers

2007-07-06 Thread Kaleb Pomeroy
A ticket, a tasket, a red and yellow basket -Original Message- From: Jochem Maas [mailto:[EMAIL PROTECTED] Sent: Friday, July 06, 2007 2:59 AM To: Daniel Brown Cc: Larry Garfield; php-general@lists.php.net Subject: Re: [PHP] Re: PHP Brain Teasers Daniel Brown wrote: Let's get

RE: [PHP] Re: PHP Brain Teasers

2007-07-05 Thread Kaleb Pomeroy
Which came first, the chicken or the egg? -Original Message- From: tedd [mailto:[EMAIL PROTECTED] Sent: Thursday, July 05, 2007 2:56 PM To: php-general@lists.php.net Subject: Re: [PHP] Re: PHP Brain Teasers $which = isset($_GET['chicken']) ? $_GET['egg'] : null; Cheers, tedd --

[PHP] Loading a URL

2007-07-05 Thread Kaleb Pomeroy
/*I am trying to load an XML file from the following site, which btw is a working site you can put in the address bar.*/ $url = http://isbndb.com/api/books.xml?access_key=WC2BD24Wresults=pricesindex1=isbnvalue1=030681496x;; //open the url if(!($handle = fopen($url, r))){ echo Error

RE: [PHP] Loading a URL

2007-07-05 Thread Kaleb Pomeroy
That's it. Thanks a bunch Robert -Original Message- From: Robert Cummings [mailto:[EMAIL PROTECTED] Sent: Thu 05-Jul-07 8:53 PM To: Kaleb Pomeroy Cc: php-general@lists.php.net Subject: Re: [PHP] Loading a URL On Thu, 2007-07-05 at 20:39 -0500, Kaleb Pomeroy wrote: /*I am trying