Re: [PHP] Re: Sending an e-mail to 1,000 people

2002-02-02 Thread rpruitt
Hmmm. I've also heard it described as a newsletter. Or a mailing list. A good program that does this is http://www.kingmailer.com/ Thirty bucks, with a built-in SMPT server. Lars Wilhelmsen wrote: Ben Clumeck [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]...

Re: [PHP] Securite problem

2002-02-02 Thread rpruitt
There are a few issues that could be involved, but the glaring big one is that require_once() only works with PHP 4 The php3 extensions make me think you should simply use require() Roebie wrote: Dear all, I have a index.php3 file in a password protected directory (on Windows) which calls

Re: [PHP] Re: Securite problem

2002-02-02 Thread rpruitt
I used this in index.php3, in a password protected directory, using Xitami on Windows. require_once(../test/require.php3); Everything did fine. Roebie wrote: I have tried absolute paths but that does not solve the problem. Unlike the filename extension suggests I am using php4. The

Re: [PHP] Re: Sending an e-mail to 1,000 people

2002-02-02 Thread rpruitt
I don't know the nature of your feud, but Manuel is right on here, as far as I'm concerned. Sterling's comments were unwarranted, unjust, and stupid. Rise above it man. Manuel Lemos wrote: Hello, Sterling Hughes wrote: On Sat, 2002-02-02 at 17:42, Manuel Lemos wrote: Hello,

Re: [PHP] header() and frameset

2002-02-01 Thread rpruitt
Anywhere in the head of the page you're gonna bust out, place this small code -- script if (parent.frames.length 0) { parent.location.href = self.document.location } /script Benjamin deRuyter wrote: Does anybody know of a way to break out of

[PHP] PHP3 file upload

2001-10-22 Thread rpruitt
This is from the manual -- ?php function is_uploaded_file($filename) { if (!$tmp_file = get_cfg_var('upload_tmp_dir')) { $tmp_file = dirname(tempnam('', '')); } $tmp_file .= '/' . basename($filename); } if

Re: [PHP] problems with a netscape post

2001-08-20 Thread rpruitt
I don't believe that can be it. I have forms working under Netscape 4+ all day with no problems, all unnamed. I would bet it's an html issue related to the editor you're using to create the forms. I'd like to see the html that fails. Steve Lawson wrote: Try giving the form a name? I normally

[PHP] removing characters

2001-03-05 Thread rpruitt
A problem of inexperience... I am trying to store an array in mysql. I obtain the array like so-- $partcount = count($Area); reset($Area); for ($i = 0; $i $partcount; $i++){ $key = key($Area); $val = $Area[$key]; $string1 .= $val . "\')