php-general Digest 23 Jan 2011 14:08:15 -0000 Issue 7148

2011-01-23 Thread php-general-digest-help
php-general Digest 23 Jan 2011 14:08:15 - Issue 7148 Topics (messages 310976 through 310980): Re: No SMTP server? Can't get mail() 310976 by: David Robley Different sessions, same client 310977 by: Paul M Foster 310978 by: Thijs Lensselink 310979 by: Ashley

Re: [PHP] Different sessions, same client

2011-01-23 Thread Thijs Lensselink
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 01/23/2011 07:33 AM, Paul M Foster wrote: Storing any sort of login/auth data in cookies has regularly been panned on this list. The preference seems to be to store whatever login/auth information *must* be stored in the $_SESSION variable.

Re: [PHP] Different sessions, same client

2011-01-23 Thread Ashley Sheridan
On Sun, 2011-01-23 at 09:21 +0100, Thijs Lensselink wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 01/23/2011 07:33 AM, Paul M Foster wrote: Storing any sort of login/auth data in cookies has regularly been panned on this list. The preference seems to be to store whatever

[PHP] Zend Memory Manager

2011-01-23 Thread Adi Mutu
Hello, This is my first mail here, i hope it's ok. Can somebody give me any hint to some docs about how the Zend mm works? I can't find any references on the net. I'm not interested in only emalloc, efree etc. but at an even lower level i mean about functions like _zend_mm_alloc_int,

[PHP] Zend memory manager

2011-01-23 Thread Adi Mutu
Hello, This is my first mail here, i hope it's ok. Can somebody give me any hint to some docs about how the Zend mm works? I can't find any references on the net. I'm not interested in only emalloc, efree etc. but at an even lower level i mean about functions like _zend_mm_alloc_int,

Re: [PHP] Different sessions, same client

2011-01-23 Thread tedd
At 11:02 AM + 1/23/11, Ashley Sheridan wrote: On Sun, 2011-01-23 at 09:21 +0100, Thijs Lensselink wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 01/23/2011 07:33 AM, Paul M Foster wrote: Storing any sort of login/auth data in cookies has regularly been panned on this list.

Re: [PHP] Zend memory manager

2011-01-23 Thread Daniel Brown
On Sun, Jan 23, 2011 at 09:10, Adi Mutu adi_mut...@yahoo.com wrote: Hello, This is my first mail here, i hope it's ok. Can somebody give me any hint to some docs about how the Zend mm works? I can't find any references on the net. I'm not interested in only emalloc, efree etc. but at

Re: [PHP] email address syntax checker

2011-01-23 Thread Govinda
Peter Lind wrote: [snip] if (!filter_var($email, FILTER_VALIDATE_EMAIL)) { echo Bad user! Bad user!; } Regards Peter thanks peter... wish I would have known about filter_var before writing the other checkers. ;-) Hi D :-) I was following along.. also felt pleased to be

Re: [PHP] Zend memory manager

2011-01-23 Thread Adi Mutu
I have looked at the sources, but it's still not very clear to me Where should I ask this question than.? Sorry for the inconveniences! Thanks,

Re: [PHP] email address syntax checker

2011-01-23 Thread Ashley Sheridan
On Sun, 2011-01-23 at 14:59 -0500, Govinda wrote: Peter Lind wrote: [snip] if (!filter_var($email, FILTER_VALIDATE_EMAIL)) { echo Bad user! Bad user!; } Regards Peter thanks peter... wish I would have known about filter_var before writing the other checkers. ;-)

Re: [PHP] Different sessions, same client

2011-01-23 Thread Paul M Foster
On Sun, Jan 23, 2011 at 11:45:30AM -0500, tedd wrote: At 11:02 AM + 1/23/11, Ashley Sheridan wrote: On Sun, 2011-01-23 at 09:21 +0100, Thijs Lensselink wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 01/23/2011 07:33 AM, Paul M Foster wrote: Storing any sort of

Re: [PHP] email address syntax checker

2011-01-23 Thread Donovan Brooke
Govinda wrote: [snip] Hi D :-) I was following along.. also felt pleased to be introduced to filter_var ... and then happened to see this: http://us3.php.net/manual/en/function.filter-var.php [snip] Note that FILTER_VALIDATE_EMAIL used in isolation is not enough for most (if not all) web

Re: [PHP] email address syntax checker

2011-01-23 Thread Govinda
Trying to finish a PHP book while watching the Packers is not working for me too well. ;-) yeah.. me trying to keep up with the php list, follow streams of thought from the posts that lead to things I need to yet learn, make time off from my other-language/full-time work.. wishing I could

RE: [PHP] Zend memory manager

2011-01-23 Thread Tommy Pham
-Original Message- From: Adi Mutu [mailto:adi_mut...@yahoo.com] Sent: Sunday, January 23, 2011 12:14 PM To: Daniel Brown Cc: php-general@lists.php.net Subject: Re: [PHP] Zend memory manager I have looked at the sources, but it's still not very clear to me Where should I

RE: [PHP] Different sessions, same client

2011-01-23 Thread Tommy Pham
-Original Message- From: Thijs Lensselink [mailto:d...@lenss.nl] Sent: Sunday, January 23, 2011 12:21 AM To: php-general@lists.php.net Subject: Re: [PHP] Different sessions, same client -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 01/23/2011 07:33 AM, Paul M Foster wrote:

RE: [PHP] Different sessions, same client

2011-01-23 Thread Tommy Pham
-Original Message- From: Tommy Pham [mailto:tommy...@gmail.com] Sent: Sunday, January 23, 2011 5:23 PM To: 'Paul M Foster' Cc: 'php-general@lists.php.net'; 'Thijs Lensselink' Subject: RE: [PHP] Different sessions, same client -Original Message- From: Thijs Lensselink

Re: [PHP] Zend memory manager

2011-01-23 Thread Adi Mutu
Of course I have tried, but nothing ... The results or only aboyt emalloc/pemalloc familly. Nothing lower level about how these 2 functions are implemented or about the mm_heap struct of mm_block.