I am currently trying to make a website. I have an array that is for the variable $page. It currently looks like

Code:
 if ($page == logout){include ('logout.php');}
  $pages = array(
  
		'register'		=> 'regform.php',
		'verify'        => 'verify.php'
    );
    
    if (array_key_exists($page, $pages))
        include($pages[$page]);
I am trying...