How can i create such a link form for my website.
localhost/index.php?page=contact
It is a non ots page.
Thanks
I want to display pages as index.php?page=name
like in gesior.
But it is to a normal php page non ots
I want to display pages as index.php?page=name
like in gesior.
But it is to a normal php page non ots
if(is_file( ROOT . '/pages/' $_GET['page'].'.php' ))
{
require(ROOT . '/pages/' $_GET['page'].'.php' );
}