i have a gameing site and i want to add html in where they post there rules i cant find how to do this
Code:
$x->add_textarea('notes',0,1,0,'tournament rules/notes',array(),10,1); //me
if(!ALP_TOURNAMENT_MODE || ALP_TOURNAMENT_MODE_COMPUTER_GAMES){
$x->add_textarea('settings',0,1,0,'server settings',array(),10,1);
}
if (empty($_POST) && $x->is_secure()) {
$x->display_top();
$x->display_form();
$x->display_bottom();
} elseif (!empty($_POST) && $x->is_secure()) {
$x->display_results();
} else {
$x->display_slim('you are not authorized to view this page.');
} ?>
there is the script can someone help me ty badboy