[PHP] A hint...

2003-12-30 Thread Jeremy Russell
Hello list.. I was needing a small hint on how to make a sort of status page... What I have is a function that takes a few minutes to complete... It send an snmp signal out then waits a bit and then gets the status via snmp. I would like to have some sort of graphic or page for the status,

RE: [PHP] removing all duplicate values from an array

2003-10-30 Thread Jeremy Russell
> -Original Message- > From: Mike Migurski [mailto:[EMAIL PROTECTED] > Sent: Thursday, October 30, 2003 1:37 PM > To: Allowee > Cc: [EMAIL PROTECTED] > Subject: Re: [PHP] removing all duplicate values from an array > > >>I'm looking for a function that does almost the same as array_uniqu

RE: [PHP] What's a good regex to validate an email address? ;)

2003-10-17 Thread Jeremy Russell
No... I replied to a reply think it was the original... :/ Doh!! > -Original Message- > From: CPT John W. Holmes [mailto:[EMAIL PROTECTED] > Sent: Friday, October 17, 2003 2:48 PM > To: Jeremy Russell; Daevid Vincent; [EMAIL PROTECTED] > Subject: Re: [PHP] What&#x

RE: [PHP] What's a good regex to validate an email address? ;)

2003-10-17 Thread Jeremy Russell
[EMAIL PROTECTED](net|com|org|gov|...) or [EMAIL PROTECTED] Will get nearly everything that resembles an email address. [EMAIL PROTECTED] would even go through the second one. Best thing to do maybe is try to send a email to the address to verify it. > -Original Message- > From: Da

[PHP] SQL security

2003-10-17 Thread Jeremy Russell
']; after that just do everything else as normal. So I just really looking for advice on securing my web app. BTW: any body heard of or use Cisco's VMPS? Jeremy Russell Network Administrator, CNI 580.235.2377 -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit

RE: [PHP] Need advice, hopefully on topic.

2003-10-10 Thread Jeremy Russell
I a newbie to cvs itself. I'll take a look at the link Thanks! > -Original Message- > From: Mike Migurski [mailto:[EMAIL PROTECTED] > Sent: Friday, October 10, 2003 2:41 PM > To: Jeremy Russell > Cc: [EMAIL PROTECTED] > Subject: Re: [PHP] Need advice, hopefully on

[PHP] Need advice, hopefully on topic.

2003-10-10 Thread Jeremy Russell
way. Does anyone have suggestions or advice on how to setup a CVS or RCCS or something like this? Web based would be even better. Just need some direction on this. Thanks!! Jeremy Russell Network Administrator, CNI 580.235.2377 -- PHP General Mailing List (http://www.php.net/) To unsubscribe, v

RE: [PHP] 3 mins of your time please...logic problem

2003-09-24 Thread Jeremy Russell
You might try to perform bother queries first then check then by If ($result1 || $result2) { echo "You have already voted"; } else { ... } This means that if either the username or ip or both exists in the db, then the user is denied... Hope this is along the lines of what your needing

RE: [PHP] Select form dynamic creation.

2003-09-24 Thread Jeremy Russell
hink it through. > -Original Message- > From: Marek Kilimajer [mailto:[EMAIL PROTECTED] > Sent: Wednesday, September 24, 2003 12:35 PM > To: Jeremy Russell > Cc: [EMAIL PROTECTED] > Subject: Re: [PHP] Select form dynamic creation. > > Have you considered using

[PHP] Select form dynamic creation.

2003-09-24 Thread Jeremy Russell
Hello list, I've spent a little time looking to see if this has been done before, and haven't found it, though I'm certain it has been done. What I want to do is build a page by first having a selection form. This select statement will have a number of items within it. When a use scroll

[PHP] problem with external command.

2003-09-22 Thread Jeremy Russell
fputs($fileid,"$scan_result\n"); fclose($fileid); //$mail_result =`$echo $scan_result | $mail -s "Hostile Node" $admin`; } /* end scanner() */ Jeremy Russell Network Administrator, CNI 580.235.2377 -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Internet Explorer toolbar

2003-03-27 Thread Jeremy Russell
Use javascript --> window.open("url","toolbar=no"); -Original Message- From: Manuel Ochoa [mailto:[EMAIL PROTECTED] Sent: Thursday, March 27, 2003 2:32 PM To: PHP General Subject: [PHP] Internet Explorer toolbar Is there any way of using php to launch a new browser without the IE toolba

RE: [PHP] redirect using header

2003-03-27 Thread Jeremy Russell
Use ---> header("Location:http://newwebpage.com";); -Original Message- From: David Banning [mailto:[EMAIL PROTECTED] Sent: Thursday, March 27, 2003 1:15 PM To: [EMAIL PROTECTED] Subject: [PHP] redirect using header I have been trying to do a redirect with header; Optex Staging and

[PHP] Apache environment variables

2003-03-24 Thread Jeremy Russell
Hello list.. I have an issue.. I have users athenticating to apache using the ldap_mod_auth module, when they authenticate it populates the LDAP_USER variable. What I need is to also populate the REMOTE_USER variable for some other CGI's, I know I could change them, but there are several written