1 2 3 4
<?php $page = $_GET['page']; if(file_exists("$page.php")) include("$page.php"); ...
PHP On Content Page Include
by Mlopez,
October 04, 2007 17:28
1 2 3 4
<?php $page = $_GET['page']; if(file_exists("$page.php")) include("$page.php"); ...
also here is code that i cu...