Re: [PHP] iterating and changing value of an array using foreach and references - PHP 5.2.3

2007-08-19 Thread Sean Pringle
On 8/18/07, Yashesh Bhatia [EMAIL PROTECTED] wrote: Hi, Here's an interesting observation i noticed while using foreach to iterate on arrays using references for it's values. -

Re: [PHP] get and post together

2007-08-08 Thread Sean Pringle
On 8/9/07, Ray [EMAIL PROTECTED] wrote: Hi all, I've done something and I want to know if I should be ashamed :) I've set up a form with method=POST and target =page.php?foo=bar it works fine. $_POST[...] gives me the data I want and $_GET['foo']=='bar'. I freely admit it's an ugly kludge,

Re: [PHP] How does the Zend engine behave?

2006-10-26 Thread Sean Pringle
The Caching systems such as Zend Cache (not the Optimizer), MMCache, APC, etc are expressly designed to store the tokenized version of the PHP script to be executed. Note that their REAL performance savings is actually in loading from the hard drive into RAM, not actually the PHP tokenization.