Path : /var/www/html/smart_kpp2_bk17 มีค 69/admin/section/default/
File Upload :
Current File : /var/www/html/smart_kpp2_bk17 มีค 69/admin/section/default/show_name_th.php

<?php
header("Content-type: application/xhtml+xml; charset=utf-8"); 
header("Cache-Control: no-cache, must-revalidate"); 
$module = $_GET['module'];
$filename = "../../../modules/$module/install/name_th.txt";

if (file_exists($filename)) {
	$handle = fopen($filename, "r");
	$contents = fread($handle, filesize($filename));
	fclose($handle);
echo "<input type='text' name='module_desc'  size='20' value='$contents'>";
} else {
echo "<input type='text' name='module_desc'  size='20' value=''>";
}

?>