Re: [PHP] Re: [PHP-DEV] Re: [PHP] PHP 5.3.6RC2 Released for Testing

2011-03-10 Thread Sharl.Jimh.Tsin
maybe the title "PHP 5.3.6RC2 Released for Testing" is wrong,please check. Best regards, Sharl.Jimh.Tsin (From China **Obviously Taiwan INCLUDED**) 2011/3/11 Pierre Joye : > See the NEWS file in the release. > > 2011/3/10 sexyprout : >> Sorry everyone. I actually meant "the full changelog from

[PHP] Re: [PHP-DEV] Re: [PHP] PHP 5.3.6RC2 Released for Testing

2011-03-10 Thread Pierre Joye
See the NEWS file in the release. 2011/3/10 sexyprout : > Sorry everyone. I actually meant "the full changelog from v5.3.5 to v5.3.6." > > -- > sexyprout > -- Pierre @pierrejoye | http://blog.thepimp.net | http://www.libgd.org -- PHP General Mailing List (http://www.php.net/) To unsubscribe

Re: [PHP] PHP 5.3.6RC2 Released for Testing

2011-03-10 Thread sexyprout
Sorry everyone. I actually meant "the full changelog from v5.3.5 to v5.3.6." -- sexyprout

Re: [PHP] PHP 5.3.6RC2 Released for Testing

2011-03-10 Thread Johannes Schlüter
On Thu, 10 Mar 2011 17:11:42 +0100, sexyprout wrote: > What will be the changes in PHP 5.3.6 final? >From the message you quoted: > 2011/3/10 Johannes Schlüter >> This is a step in the release process of this versions and goal >> is having a final version using the same source state by next we

[PHP] Re: [PHP-DEV] Re: [PHP] PHP 5.3.6RC2 Released for Testing

2011-03-10 Thread Pierre Joye
2011/3/10 sexyprout : > What will be the changes in PHP 5.3.6 final? No change between RC3 and final if everything is fine in this RC, if not then we may need another RC. Cheers, -- Pierre @pierrejoye | http://blog.thepimp.net | http://www.libgd.org -- PHP General Mailing List (http://www.ph

Re: [PHP] PHP 5.3.6RC2 Released for Testing

2011-03-10 Thread Joel
http://svn.php.net/viewvc/php/php-src/tags/php_5_3_6RC3/NEWS?revision=309052&view=markup 2011/3/10 sexyprout : > What will be the changes in PHP 5.3.6 final? > > 2011/3/10 Johannes Schlüter > >> The third, and last, release candidates of 5.3.6 was just released for >> testing and can be downloade

Re: [PHP] PHP 5.3.6RC2 Released for Testing

2011-03-10 Thread sexyprout
What will be the changes in PHP 5.3.6 final? 2011/3/10 Johannes Schlüter > The third, and last, release candidates of 5.3.6 was just released for > testing and can be downloaded here: > > http://downloads.php.net/johannes/php-5.3.6RC3.tar.bz2 (md5sum: > 0098109e00a0514f947e4358d1381a67) > http:/

[PHP] PHP 5.3.6RC2 Released for Testing

2011-03-10 Thread Johannes Schlüter
The third, and last, release candidates of 5.3.6 was just released for testing and can be downloaded here: http://downloads.php.net/johannes/php-5.3.6RC3.tar.bz2 (md5sum: 0098109e00a0514f947e4358d1381a67) http://downloads.php.net/johannes/php-5.3.6RC3.tar.gz (md5sum: e4d756d89d89844b1da49c1ad41e0a

RE: [PHP] Issue with Quick Email validation

2011-03-10 Thread Ford, Mike
Apart form the obvious error already solved, in this situation I would not be forcing my users to type in an element that only has one option -- I would display the form box with the text "@company.com" immediately after it, and only expect the unique part to be entered. Cheers! Mike -- Mik

Re: [PHP] Issue with Quick Email validation

2011-03-10 Thread Richard Quadling
On 10 March 2011 11:07, wrote: > Thank you, that did get me past that part! > > Had also to put in else statement to call Email function, without doing so > the mail was sent even though giving error > > Robert > > > > > > > > -Original Message- > From: Louis Huppenbauer > To: rob...@my

Re: [PHP] Issue with Quick Email validation

2011-03-10 Thread robert
Thank you, that did get me past that part! Had also to put in else statement to call Email function, without doing so the mail was sent even though giving error Robert -Original Message- From: Louis Huppenbauer To: rob...@myself.com Cc: php-general@lists.php.net Sent: Thu, Mar

Re: [PHP] Issue with Quick Email validation

2011-03-10 Thread Louis Huppenbauer
try != instead of ==, that should do the trick. 2011/3/10 : > Hi, > I'm newbie to PHP and this list, possible not a new question so forgive me if > it's a repeat > I have a form where I want the submitter Email ID to only be from one domain > > Here's the part I'm having issues with > >        

[PHP] Issue with Quick Email validation

2011-03-10 Thread robert
Hi, I'm newbie to PHP and this list, possible not a new question so forgive me if it's a repeat I have a form where I want the submitter Email ID to only be from one domain Here's the part I'm having issues with $domain = explode( "@", $who);