• 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 blank page

allashal

New Member
Joined
Oct 28, 2009
Messages
16
Reaction score
0
Hey!
Mabye kinda noobie question but.
I want to do a blank page on php without orignal page thats comes under.
I wrote a normal HTML page but then my orginal skin came also under.
I use Geisor ACC.
The Owner off Gisor told me it on Msn but i dident save it.
It was something like

<php>

Stop ;,

bla bla bla bla (content)

, <?>

Im not sure..
 
If you already have the .HTML, this will fit your needs.

PHP:
<?php
$main_content .= ''.file_get_contents('content.html');.'';
?>
 
Or just add:

Code:
case 'mypage':
    $main_content .= file_get_contents('mypage.html');
    break;

to index.php.
 
Back
Top