<?php

// follow the same syntax to add additional users
switch($_SERVER["REMOTE_USER"]) {
    case "DickLover621":
        header("Location: sam.html");
        die();
    case "desbk1998":
        header("Location: dest.html");
        die();
}
