[PHP] Re: mail()

2003-07-22 Thread James Rodenkirch
in the headers section of the mail() function have a line of text like this - you would obviously need to build the list of email address. $headers = Bcc: [EMAIL PROTECTED],[EMAIL PROTECTED] .\n Javier wrote: [EMAIL PROTECTED] (Joshua Groboski) wrote in news:[EMAIL PROTECTED]: but I will

[PHP] Re: mail()

2003-07-22 Thread James Rodenkirch
and send an email to every person - just my 2 cents Javier wrote: [EMAIL PROTECTED] (James Rodenkirch) wrote in news:[EMAIL PROTECTED] net.com: And what about the To? Is it possible to send an email without the To? in the headers section of the mail() function have a line of text like this - you

[PHP] Re: need help with MySQL full text searching!!!!

2003-07-21 Thread James Rodenkirch
You need to use mysql 4.0.10-gamma for full text searching to work Angelo Zanetti wrote: Hi I have a table which contains 3 fields (ID, Title, Abstract) the title and abstract fields have been fulltext indexes like this: ALTER TABLE biblio ADD FULLTEXT (title,abstract); that worked fine,

Re: [PHP] Changing numbers

2003-07-21 Thread James Rodenkirch
try rounding it first http://www.php.net/manual/en/function.round.php Zavaboy wrote: What about if I had 2.856 that function will make it 2.86. Jay Blanchard [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] [snip] How can I make them have at least 2 decimal places? [/snip] RTFM at

[PHP] Re: can't restart session

2003-07-21 Thread James Rodenkirch
you need to specify what session variables to unset - usually I write a foreach loop to unset every session variable (unless you are using certain variables for other parts of the site) Like This foreach ($_SESSION as $key = $value){ session_unregister($key); } Chris W. Parker wrote:

[PHP] Re: MIME decoder for use as the target of an Alias?

2003-07-21 Thread James Rodenkirch
There are classes built into PEAR that handle that Larry Rosenman wrote: I've got a strange request, maybe one of the experts here can help? I need to be able to take a mail message on stdin, bust it up into headers, and the constituent mime-parts if any, and be able to parse the headers, and

[PHP] browser tries to download not display

2001-07-12 Thread James Rodenkirch
I am having a problem - hopefully someone can help me :o) I am trying to use a php document on a secure server, but instead of displaying output from the script, it tries to download the file. Even code this simple does it: ?php print(Hi); ? Thanks!!