Dustin Krysak wrote:

> now what I need to do is modify the code so that the script checks 2
> URL parameters, and has 2 variables defined (from the URL parameter)...
> 
> So I need to also check if $_REQUEST['year'] is set as well as the
> original (both need to be set to get the first HTML content) AND I also
> need to set the variable of $year = ($_REQUEST['year']
<?php
        if (isset($_REQUEST['mov']) && isset($_REQUEST['year'])) {
        $movie = $_REQUEST['mov'];
        $year =  $_REQUEST['year'];
?>
HTMLÂCONTENT
<?php
}
        elseÂ{
?>
OTHERÂHTMLÂCONTENT
<?php
}
?>

Christian

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to