if($_GET){
$way = 'theme/page/';
$extension = '.php';
$content = $yol . strip_tags(trim($_GET['sayfa'])) . $uzanti;
require_once "$content";
}
if($_GET){
$way = 'tema/information/';
$extension = '.php';
$content = $yol . strip_tags(trim($_GET['information'])) . $uzanti;
require_once "$content";
}
我有两种不同的 GET 方法。我如何在一个页面上同时检查两者。