[PHP] Re: Best way to mass mail

2005-09-13 Thread Joshua May
You have to be careful, though, because I had this problem.. I had PHP running as a CGI on the host with Apache, and Apache had a nasty habit of terminating the CGI communicationg before PHP had finished mailing everyone, even if set_time_limit(0); was set (well, even if

[PHP] Re: Mail-format...

2005-09-22 Thread joshua may
I was having the same issue with one of my clients just today in fact. We just filtered the email addresses to ensure they're valid. There's a million regex's out there to do this for you.. Cheers Josh Gustav Wiberg wrote: Hi there! I wonder why I get get these kind of mails (look down

Re: [PHP] Load from db into select-list

2005-12-18 Thread joshua may
Curt Zirzow wrote: On Sun, Dec 18, 2005 at 08:28:22PM +0100, Gustav Wiberg wrote: Hi there! Is it possible to load a select-list with databasinfo without reloading a page??? With AJAX, yeah. Curt. call it 'remote scripting', dammit! it rarely seems to get used as 'ajax' strictly..

[PHP] Re: Function Overloading

2005-12-18 Thread joshua may
Labunski wrote: PHP does not support function overloading. So, is there any other way of getting a number of parameters(variables) passed to a function? aka. function fruits($apple, $banana, $kiwi, $grape){ #should (somehow) output 4 } OK. if it was an array, than I could use