[PHP] Automatic Form processor

2004-10-19 Thread Lone Wolf
I've googled for this one and so far have come up empty handed. I am in need of a PHP script that will take any POST data and parse it into a file and email it out to users. The data needs to be completely changeable, whether I have 20 items or 400, I just want to throw everything to the script

RE: [PHP] List of Users

2004-09-02 Thread Lone Wolf
Why not just shell it out? ?php $users = passthru('ls /var/spool/mail'); echo $users; ? Robert -Original Message- From: Jesus [mailto:[EMAIL PROTECTED] Sent: Thursday, September 02, 2004 11:56 AM To: [EMAIL PROTECTED] Subject: [PHP] List of Users Hi need some clue about of

RE: [PHP] Re: mail() function problem

2004-09-01 Thread Lone Wolf
What you need to do is set your SMTP server inside the php.ini file... [mail function] SMTP = smtp.server.com ; for win32 only sendmail_from = [EMAIL PROTECTED] ; for win32 only ;sendmail_path = ;for unix only, may supply arguments as well ; (default is sendmail -t) The test string I used