[PHP] Re: if statment

2003-03-31 Thread Ryan Vennell
in addition to my last response, if you go to http://www.php.net/manual/en/ you can find more than you ever wanted to know about php. just use the search at the top. >>> Tim Haskins<[EMAIL PROTECTED]> 03/31/03 01:56PM >>> I'm used to asp and not php, but what would the code be for and if stat

[PHP] Re: if statment

2003-03-31 Thread Ryan Vennell
if ($HTTP_GET_VARS["pr_ID"] = "nothing" ) { } else if ($HTTP_GET_VARS["pr_ID"] = "something") { } else { } -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: if statment

2003-03-31 Thread R'twick Niceorgaw
if ( !isset($HTTP_GET_VARS["pr_ID"]) OR empty($HTTP_GET_VARS["pr_ID"]) ) HTH R'twick "Tim Haskins" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > I'm used to asp and not php, but what would the code be for and if statement > that was like: > > if $HTTP_GET_VARS["pr_ID"] = "nothing"