[PHP] lists, email, 1 each

2011-01-15 Thread kbailey
ok, my site uses the Cpanel. Cpanel does NOT like creating forwarding aliases with multiple TO address'. I want to make a bone butt simple list using a php script, and this must accept a file with 2 email address' in it. Any advice? -- PHP General Mailing List (http://www.php.net/) To

[PHP] query strings and other delights

2011-01-13 Thread kbailey
I have circumstances which cause me to investigate get strings and such, and wish to start a thread discussing such matters. This relates to a cluster of functions iin php such as public array HttpQueryString::toArray ( void ) and it's bretherin and sisterin and otherin. Being new to

Re: [PHP] Re: query strings and other delights

2011-01-13 Thread kbailey
...Holy cow... nothing to extract the query string, it's automatically part of the environment. So I just do work with the $_GET string, it's in there already... yikes. Quoting Nathan Rixham nrix...@gmail.com: kbai...@howlermonkey.net wrote: Your turn! :-D $_GET and if you do post..

Re: [PHP] Re: query strings and other delights

2011-01-13 Thread kbailey
Cool. SO, now it's in a string, I can chop, slice, dice, make gazillions of steak fries, and drive on. So, now we can munch a webpage with a query string as a KEY to unlock access to it, and use DIE to stop the process if it is not there, or is the correct key, so far making sense?