I'm toying around with taking variables that are passed from a form, into a new page, but only showing specific portions of the site if the variables come out to having a value.
right now im using
if ($seasons=='true')
{
include('includes/seasons.php'); /* seasons show */
} else {
include('includes/products.php'); /* products */
}
?>