<?
####################################################
# start of check contents
# if found then show this data
# if not found then show nopage.php file.
####################################################
if($lnk ==""){
include ("home_menu.php");
}else{
$file_name = "./$lnk.php";
if (file_exists($file_name)){
include "$file_name";
}else{
include ("./undercons.php");
}
}
?>
<?
####################################################
# start of check contents
# if found then show this data
# if not found then show nopage.php file.
####################################################
if($lnk ==""){ // ถ่าตัวแปร $link มีค่าเป็นว่าง
include ("home_menu.php"); // ให้ include ไฟล์นี้เข้ามา
}else{ // ถ้าตัวแปร $link ไม่ว่าง
$file_name = "./$lnk.php"; // กำหนดค่าตัวแปร $file_name = $link.php ( เช่น $link = xxx จะได้ xxx.php)
if (file_exists($file_name)){ // ตรวจสอบว่า path $file_name มีอยู่จริงหรือไม่
include "$file_name"; // ถ้ามีอยู่จริงก็ให้ include เข้ามา
}else{ // ถ้าไม่อยู่จริง
include ("./undercons.php"); // ให้ include ไฟล์นี้แทน
}
}
?>