Salve, ho questo array :
$arrPages = array(
'about' => 'Chi sono?',
'links'=>'Links',
);
il codice è questo:
mi chiedevo se digito un url che nell'array non esiste come posso fare ad fare venire una cosa bianca senza nome.?
idea come fare non saprei chiedo ad voi..
grazie mille per gli aiuti.
$arrPages = array(
'about' => 'Chi sono?',
'links'=>'Links',
);
il codice è questo:
PHP:
<?php
include('inc.php');
include('template/'.$theme.'/template.php');
$url = (isset($_GET["url"])) ? trim ((string)$_GET["url"]): '';
if(empty($url))
{
$title = "Accesso non consentito";
layout_header($title);
include("error/error_403.php");
layout_footer();
}else
{
if(file_exists(strtolower("xxx/".strtolower($url).".php")))
{
$title = $arrPages[''.strtolower($url).''];
layout_header($title);
include("xxx/".strtolower($url).".php");
layout_footer();
}else
{
$title = "404 not found";
layout_header($title);
include("error/error_404.php");
layout_footer();
}
}
?>
mi chiedevo se digito un url che nell'array non esiste come posso fare ad fare venire una cosa bianca senza nome.?
idea come fare non saprei chiedo ad voi..
grazie mille per gli aiuti.
Ultima modifica: