Re: [PHP] Forwarding $_POST Values

2005-12-09 Thread Zack Bloom
Guys just stop. This should be the last post regarding this. On 12/9/05, John Nichel [EMAIL PROTECTED] wrote: vizion wrote: snip Well if you were not rude then you certainly are now - Too much correspondence with you in that vein could contaminate the environment. chuckles You should

Re: [PHP] What software do you use for writing PHP?

2005-12-08 Thread Zack Bloom
I wish I had the punch card version. I have to rewire my php box everytime I want to change something. On 12/8/05, David Robley [EMAIL PROTECTED] wrote: John Nichel wrote: Miles Thompson wrote: At 11:45 AM 12/7/2005, Jay Blanchard wrote: [snip] Two words punch cards. 'Nuff

Re: [PHP] Mime-type handling

2005-12-08 Thread Zack Bloom
mime types are very unreliable and should never be used for file type authentication (they can also be faked by users). Instead you could try using the extension of the file or an identifying statement in the file. On 12/8/05, Manuel Vacelet [EMAIL PROTECTED] wrote: Hi all, I'm facing a bad

Re: [PHP] Re: QUERY_STRING Variables and POST

2005-12-08 Thread Zack Bloom
use $_REQUEST['name'] to get value On 12/8/05, Michael B Allen [EMAIL PROTECTED] wrote: On Thu, 08 Dec 2005 17:56:14 -0500 Roman Ivanov [EMAIL PROTECTED] wrote: Michael B Allen wrote: I'm using the POST method but I would also like to access QUERY_STRING parameters. Is there a

Re: [PHP] What software do you use for writing PHP?

2005-12-08 Thread Zack Bloom
Notepad++ is inherently better then notepad (and textpad) and free. I wish I had the punch card version. I have to rewire my php box everytime I want to change something. On 12/8/05, David Robley [EMAIL PROTECTED] wrote: John Nichel wrote: Miles Thompson wrote: At 11:45 AM

Re: [PHP] ob_start session_start

2005-12-07 Thread Zack Bloom
to the browser. Since cookies must be set in the headers and the headers must be set before any content is sent to the page, to use cookie based sessions you must begin the session before the buffer. Hope that cleared it up, Zack Bloom On 12/8/05, Chris Shiflett [EMAIL PROTECTED] wrote: Joe Harman

Re: [PHP] array carrying from one php page to another

2005-12-07 Thread Zack Bloom
you could just pass in in the address, eg: www.example.com?var1=$var1var2=$var2 to get them use $_REQUEST['var1'] to pass an array you could use serialize($var1) and unserialize($var1) On 12/8/05, Chris Shiflett [EMAIL PROTECTED] wrote: Curt Zirzow wrote: ?php $array = array('my',

Re: [PHP] ob_start session_start

2005-12-07 Thread Zack Bloom
I have never tried it but if it did work i doubt it would use cookies, it would probably pass it in the addresses or throw an error. On 12/8/05, Joe Harman [EMAIL PROTECTED] wrote: I guess this was just out of general curiousity... If you started 'session_start()' after 'ob_start()' would the

Re: [PHP] ob_start session_start

2005-12-07 Thread Zack Bloom
Sorry it looked like the rest of your email was part of the previous one. To answer your question it is better to call session_start() before ob_start() On 12/8/05, Zack Bloom [EMAIL PROTECTED] wrote: I have never tried it but if it did work i doubt it would use cookies, it would probably pass