• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

[PHP]Url form.

Kavvson

Gdy boli cie glowa wez
Joined
Jun 25, 2008
Messages
1,177
Reaction score
72
Location
Poland
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

duh...
$_GET['page'] and do what ever you want with it? o_O, i don't simply get your question, or maybe it ain't a question but a request? if it's a request then: FU very much.
 
I want to display pages as index.php?page=name

like in gesior.

But it is to a normal php page non ots

PHP:
if(is_file( ROOT . '/pages/' $_GET['page'].'.php' ))
{
    require(ROOT . '/pages/' $_GET['page'].'.php' );
}

Something like that?
 
Back
Top