Re: [PHP] phpinfo()

2013-02-19 Thread Ashley Sheridan
John Taylor-Johnston wrote: >I cannot find button2 in phpinfo() when I click it. I was hoping to >find >a $_POST["button2"] value. >What am I doing wrong? > >onclick="formSubmit()"> > >I really wanted to use a button to pass a different condition than a > Use a different value or name on the

Re: [PHP] if (empty versus if (isset

2013-02-19 Thread Adam Richardson
On Tue, Feb 19, 2013 at 9:29 PM, John Taylor-Johnston wrote: > > What is the difference between? > > if (empty... http://www.php.net/manual/en/function.empty.php "Determine > whether a variable is empty" > and > if (isset... http://php.net/manual/en/function.isset.php "Determine if a > variable

[PHP] if (empty versus if (isset

2013-02-19 Thread John Taylor-Johnston
What is the difference between? if (empty... http://www.php.net/manual/en/function.empty.php "Determine whether a variable is empty" and if (isset... http://php.net/manual/en/function.isset.php "Determine if a variable is set and is not *|NULL|*" I have an . If it is not checked, it is NOT

[PHP] phpinfo()

2013-02-19 Thread John Taylor-Johnston
I cannot find button2 in phpinfo() when I click it. I was hoping to find a $_POST["button2"] value. What am I doing wrong? onclick="formSubmit()"> I really wanted to use a button to pass a different condition than a -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: h

[PHP] Re: [PHP-DEV] PHP 5.3.22RC1 and 5.4.12RC1 Released for Testing!

2013-02-19 Thread Jan Ehrhardt
Stas Malyshev in php.internals (Tue, 19 Feb 2013 15:35:54 -0800): >> Johannes Schlüter in php.internals (Thu, 31 Jan 2013 16:00:17 +0100): >>> If no critical issues is found in this RC, the final version will be >>> released in two weeks. >> >> Just curious: what is keeping 5.3.22 and 5.4.12 from

[PHP] Re: [PHP-DEV] PHP 5.3.22RC1 and 5.4.12RC1 Released for Testing!

2013-02-19 Thread Stas Malyshev
Hi! > Johannes Schlüter in php.internals (Thu, 31 Jan 2013 16:00:17 +0100): >> If no critical issues is found in this RC, the final version will be >> released in two weeks. > > Just curious: what is keeping 5.3.22 and 5.4.12 from being released? > Are there any issues? We had 5.4.12 RC2 last we

[PHP] Re: [PHP-DEV] PHP 5.3.22RC1 and 5.4.12RC1 Released for Testing!

2013-02-19 Thread Johannes Schlüter
On Wed, 2013-02-20 at 00:13 +0100, Jan Ehrhardt wrote: > Johannes Schlüter in php.internals (Thu, 31 Jan 2013 16:00:17 +0100): > >If no critical issues is found in this RC, the final version will be > >released in two weeks. > > Just curious: what is keeping 5.3.22 and 5.4.12 from being released?

[PHP] Re: [PHP-DEV] PHP 5.3.22RC1 and 5.4.12RC1 Released for Testing!

2013-02-19 Thread Jan Ehrhardt
Johannes Schlüter in php.internals (Thu, 31 Jan 2013 16:00:17 +0100): >If no critical issues is found in this RC, the final version will be >released in two weeks. Just curious: what is keeping 5.3.22 and 5.4.12 from being released? Are there any issues? Jan -- PHP General Mailing List (http://

Re: [PHP] parsing select multiple="multiple"

2013-02-19 Thread Jim Giner
On 2/19/2013 2:02 PM, John Taylor-Johnston wrote: tamouse mailing lists wrote: >I hate arrays. :D Here's a small snippet showing how it works, I hope: foreach ($DPRpriority as $item => $value) { echo " ".$item.": ".$value['name']." selected: ".$value['selected']." \n"; } Question 1: when

Re: [PHP] parsing select multiple="multiple"

2013-02-19 Thread John Taylor-Johnston
tamouse mailing lists wrote: >I hate arrays. :D Here's a small snippet showing how it works, I hope: foreach ($DPRpriority as $item => $value) { echo " ".$item.": ".$value['name']." selected: ".$value['selected']." \n"; } Question 1: when did we have to add [] to a name to turn it into a