


|
|
|
|
if ( $_GET['option'] == "home" || $_GET['option'] == "" || $_GET['option'] == "contest")
{
include('inc/contest.html');
}
elseif ( $_GET['option'] == "pics" )
{
include('inc/pics.html');
}
elseif ( $_GET['option'] == "reports" )
{
include('inc/reports.html');
}
?>
|
|
|
|
|
|