私は、php を使用してページにコンテンツを動的にロードしています。jqueryでフェードインのような素敵な効果をつけたいです。
しかし、ユーザーが JavaScript をオフにしている場合でも、自分のページが引き続き機能することを望みます。
これは、コンテンツをロードするための私のphpコードです:
/// load page content
$pages_dir = 'content';
if(!empty($_GET['p'])) {
$pages = scandir($pages_dir, 0);
//delete . and ..
unset($pages[0], $pages[1]);
$p = $_GET['p'];
// only files that are in the array can be loaded
if (in_array($p. '.php', $pages)) {
include($pages_dir. '/'.$p. '.php');
} else {
echo 'This page is not available';
}
} else {
include($pages_dir. '/index.php');
}