Hey, hows everyone doing here. I need a little php help since i just learned php.
How do i like, make urls like mydomain.com/index.php?a=games instead of using many php files.
not exactly sure what you're asking but something like this comes to mind:
if($_GET['a']=='games'){ include 'games.php'; }elseif($_GET['a']=='other'{ include 'other.php'; }