Re: [PHP] Running a script with Crontab

2001-09-30 Thread Jeffrey Paul
's not possible to grab it even with a shorter execution time as well. -j Jeffrey Paul [EMAIL PROTECTED] (877) 748 3467 ICQ: 14295546 AIM: kw34hd1 NXTL/DC: 130*21*16749 PGP: 0xF50BB9D7 A21AFD828C30EC77545DA0B3F501F50BB9D7 --

Re: [PHP] WEB LOG

2001-09-24 Thread Jeffrey Paul
downright trivial to spoof 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 A21AFD828C30EC77545DA0B

Re: [PHP] WEB LOG

2001-09-24 Thread Jeffrey Paul
event anyone at all from hitting, in your example, http://therealsite. -j Jeffrey Paul [EMAIL PROTECTED] (877) 748 3467 ICQ: 14295546 AIM: kw34hd1 NXTL/DC: 130*21*16749 PGP: 0xF50BB9D7 A21AFD828C30EC77545DA0B3F501F50BB9D7 -- PHP General Maili

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!! > $cmdstr = "grep -i $searchstr *"; "man grep" on my linux box show

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] 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? Thi

Re: [PHP] Cookie Expire Problem

2001-04-07 Thread Jeffrey Paul
actually, the offending line is: $cookie_expire = "$time*3"; it may be set too high if you triple it, but i think what might be happening is that it's setting $cookie_expire to '986703865*3' which would be invalid. if this is the case (i dont think you can multiply inside of quotes), then t