Re: [PHP] set multiple variables

2004-10-01 Thread Brad Pauly
On Fri, 1 Oct 2004 17:38:31 -0400, Joe Szilagyi <[EMAIL PROTECTED]> wrote: > Hi, I have this working: > > if ($REMOTE_ADDR == "212.3.54.65") { > header("Location: http://www.google.com/search?&q=huzzah";); > Redirect browser > exit; > } > > But I want to specify multiple

Re: [PHP] set multiple variables

2004-10-01 Thread Marek Kilimajer
Joe Szilagyi wrote: Hi, I have this working: if ($REMOTE_ADDR == "212.3.54.65") { header("Location: http://www.google.com/search?&q=huzzah";); Redirect browser exit; } But I want to specify multiple IPs. What's the best recommended way for doing that? There was one request

Re: [PHP] set multiple variables

2004-10-01 Thread Paul Bissex
On Fri, 1 Oct 2004 17:38:31 -0400, Joe Szilagyi <[EMAIL PROTECTED]> wrote: > Hi, I have this working: > > if ($REMOTE_ADDR == "212.3.54.65") { > header("Location: http://www.google.com/search?&q=huzzah";); > Redirect browser > exit; > } > > But I want to specify multiple