Re: [PHP] Another SYSTEM Function Question

2007-04-27 Thread Nathaniel Hall
Richard Lynch wrote: On Thu, April 26, 2007 3:27 pm, Nathaniel Hall wrote: The command I am running is system("arp " . $_SERVER['REMOTE_ADDR'] . See also: http://php.net/exec Thanks to all for you help. I apparently missed that exec was the proper function to use for what I am wantin

Re: [PHP] Another SYSTEM Function Question

2007-04-27 Thread Richard Lynch
On Thu, April 26, 2007 3:27 pm, Nathaniel Hall wrote: > The command I am running is system("arp " . $_SERVER['REMOTE_ADDR'] . See also: http://php.net/exec -- Some people have a "gift" link here. Know what I want? I want you to buy a CD from some indie artist. http://cdbaby.com/browse/from/lynch

Re: [PHP] Another SYSTEM Function Question

2007-04-27 Thread Jochem Maas
Nathaniel Hall wrote: > I have another question regarding running a system command on a web > server. Let me explain again, I am creating a login page that is to be > used on my local lan only. I am wanting to lock down a maximum number > of logins to up to 2 MAC addresses. I finally got the arp

Re: [PHP] Another SYSTEM Function Question

2007-04-26 Thread Chris
Nathaniel Hall wrote: I have another question regarding running a system command on a web server. Let me explain again, I am creating a login page that is to be used on my local lan only. I am wanting to lock down a maximum number of logins to up to 2 MAC addresses. I finally got the arp com

Re: [PHP] Another SYSTEM Function Question

2007-04-26 Thread Daniel Brown
Try this: On 4/26/07, Nathaniel Hall <[EMAIL PROTECTED]> wrote: I have another question regarding running a system command on a web server. Let me explain again, I am creating a login page that is to be used on my local lan only. I am wanting to lock down a maximum number of logins to up

[PHP] Another SYSTEM Function Question

2007-04-26 Thread Nathaniel Hall
I have another question regarding running a system command on a web server. Let me explain again, I am creating a login page that is to be used on my local lan only. I am wanting to lock down a maximum number of logins to up to 2 MAC addresses. I finally got the arp command working, but now