Re: [PHP] Running a script with Crontab

2001-09-30 Thread Jeffrey Paul
Jeffrey Paul [EMAIL PROTECTED] (877) 748 3467 ICQ: 14295546 AIM: kw34hd1 NXTL/DC: 130*21*16749 PGP: 0xF50BB9D7 A21AFD828C30EC77545DA0B3F501F50BB9D7 -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED

Re: [PHP] WEB LOG

2001-09-24 Thread Jeffrey Paul
Jeffrey Paul [EMAIL PROTECTED] (877) 748 3467 ICQ: 14295546 AIM: kw34hd1 NXTL/DC: 130*21*16749 PGP: 0xF50BB9D7 A21AFD828C30EC77545DA0B3F501F50BB9D7 -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands

Re: [PHP] WEB LOG

2001-09-24 Thread Jeffrey Paul
it. This doesn't afford any more security at all. -j Jeffrey Paul [EMAIL PROTECTED] (877) 748 3467 ICQ: 14295546 AIM: kw34hd1 NXTL/DC: 130*21*16749 PGP: 0xF50BB9D7 A21AFD828C30EC77545DA0B3F501F50BB9D7 -- PHP General

Re: [PHP] ADV. Natural penis enlargement -without surgery-!

2001-08-01 Thread Jeffrey Paul
At 09:00 PM 7/31/2001, Guaranteed ! wrote: We are a serious company, offering a program that will enhance your sex life, and enlarge your penis in a totally natural way. I think they got the ASP mailinglist mixed up with the PHP one.. -j --

Re: [PHP] Newbie: Site search, more than one directory

2001-08-01 Thread Jeffrey Paul
At 04:11 PM 8/30/2001, Steve Wright wrote: Hey, I have just developed a simple site search.. .and am after learning how to get it to search all directories... at present, it only searches the one it is in!! snip $cmdstr = grep -i $searchstr *; man grep on my linux box shows:

Re: [PHP] return parse error

2001-04-13 Thread Jeffrey Paul
At 03:56 AM 4/13/2001, Peter Harkins wrote: This generates a parse error: mysql_connect("localhost", "root", "rootpw") or return("bar"); But all the following work fine: mysql_connect("localhost", "root", "rootpw") or die("bar");

RE: [PHP] Can't redeclare already declared function

2001-04-11 Thread Jeffrey Paul
better yet, try include_once() instead of all instances of include(). It will only include a file once, rather than every time you call include() on that path. Nifty feature. -j At 11:17 AM 4/11/2001, Johnson, Kirk wrote: The function in question is defined in an included file, right?