PHP Switch and Login
- by Steve Rivera
I'm fairly new with PHP and I am messing around with a login/registration system. I setup my sample website using a PHP-SWITCH script I found a while back:
<?php
switch($_GET['id']) {
default: include('home.php');
/* LOGIN PAGES */
break; case "register_form":
include ('includes/user_system/register_form.php');
}
?
On the…