<?php
include 'includes/?pagina=dicas';
?>
<?php
//CRIA UMA FUNÇÃO
function QueryString(&$get, $inicio, $pasta){
//verifica se $get existe
$get = (isset($get)) ? $get : '';
//remove os espaços antes e depois da string
$get = trim($get);
//remove tag php e html
$get = strip_tags($get);
//verifica se está vazio
if(empty($get)){
include("$pasta/$inicio");
}
//verifica se existe algum desses caracteres
elseif(eregi("http|www|.php|.asp|.net|.gif|.exe|.jpg|./", $get)){
include("$pasta/$inicio");
}
//verifica se o arquivo não existe
elseif(!file_exists("$pasta/$get.php")){
include("$pasta/$inicio");
}else{
//passando pelas verificações, ele dá o include
include("$pasta/$get.php");
}
}
?>
<?php
ob_start();
include_once("funcoes/functions.php");
@$local = $_REQUEST['caminho'];
if ($local == "" )
{$pasta = "includes"; // default directory of the files
}
elseif ($local !== "")
{$pasta = $local; // force another directory
}
else {$pasta = "includes";
}
QueryString($_GET['pagina'], "home.php", $pasta);
?>
<?php
$linkprefix = 'pagina=products&';
include 'news/index.php';
?>