SM0 She11
Path:
/
/
home
/
saienerg
/
public_html
/
intra
Full Path (server): /home/saienerg/public_html/intra
Create Fil3
Upl04d Fil3
📄 ajax1.php
[E]
[D]
[R]
📄 article_list.php
[E]
[D]
[R]
📁 assets
Open
[D]
[R]
📁 career
Open
[D]
[R]
📄 career_enquiries.php
[E]
[D]
[R]
📄 cat_load.php
[E]
[D]
[R]
📁 change
Open
[D]
[R]
📄 cmn_lib.php
[E]
[D]
[R]
📄 common.php
[E]
[D]
[R]
📄 compressImage.php
[E]
[D]
[R]
📄 config.php
[E]
[D]
[R]
📁 css
Open
[D]
[R]
📁 dashboard
Open
[D]
[R]
📁 data
Open
[D]
[R]
📁 fonts
Open
[D]
[R]
📄 foo_scripts.php
[E]
[D]
[R]
📄 foo_scripts1.php
[E]
[D]
[R]
📄 footer.php
[E]
[D]
[R]
📄 footer1.php
[E]
[D]
[R]
📄 form.php
[E]
[D]
[R]
📁 gallery
Open
[D]
[R]
📄 getExtension.php
[E]
[D]
[R]
📄 header.php
[E]
[D]
[R]
📄 header1.php
[E]
[D]
[R]
📁 hrrepo
Open
[D]
[R]
📁 images
Open
[D]
[R]
📁 includes
Open
[D]
[R]
📄 index.php
[E]
[D]
[R]
📄 index1.php
[E]
[D]
[R]
📄 kis_config.php
[E]
[D]
[R]
📄 login.php
[E]
[D]
[R]
📄 logout.php
[E]
[D]
[R]
📁 masters
Open
[D]
[R]
📁 others
Open
[D]
[R]
📁 perfomances
Open
[D]
[R]
📁 products
Open
[D]
[R]
📄 products.js
[E]
[D]
[R]
📁 services
Open
[D]
[R]
📄 sidebar.php
[E]
[D]
[R]
📄 sidebar1.php
[E]
[D]
[R]
📄 spel_config.php
[E]
[D]
[R]
📄 top_nav.php
[E]
[D]
[R]
📄 top_nav1.php
[E]
[D]
[R]
📁 users
Open
[D]
[R]
Editing: cat_load.php
<?php include('spel_config.php'); session_start(); //if(isset($_GET['m_cat']) or isset($_GET['s_cat'])) if(isset($_GET['state_load'])) { $val=explode('$',$_GET['state_load']); $id = mysqli_real_escape_string($idb,$val[0]); $qry =mysqli_query($idb,"select * from states_list where country_id='$id' order by name ASC")or die(mysqli_error()); $cnt=mysqli_num_rows($qry); // $res = mysqli_query($idb,$qry) or die(mysqli_error()); if($cnt>0) { echo "<option value=''>-----Select------</option>"; while ($row = mysqli_fetch_array($qry)) { echo " <option value='".$row['zone_id']."'>".$row['name']."</option>"; } } else { $qry = mysqli_query($idb,"select * from countries where country_id='$id'"); $row=mysqli_fetch_array($qry); echo "<option value='".$row['country_id']."'>".$row['name']."</option>"; //echo "<option >No Results Found!</option>"; //echo'No Results Found!'; } } else if(isset($_GET['termdefn_load'])) { $val=explode('$',$_GET['termdefn_load']); $trm_typ = mysqli_real_escape_string($idb,$val[0]); $frm_typ = mysqli_real_escape_string($idb,$val[1]); $sql = "select* from terms_list where trm_typ='$trm_typ' and frm_id='$frm_typ' and status='0' "; $res = mysqli_query($idb,$sql) or die(mysqli_error()); //echo "<select id='trm_dfn' name='trm_dfn' class='form-control' tabindex='5' required>"; echo "<option value=''>Select</option>"; while ($row = mysqli_fetch_array($res)) { echo "<option value='".$row['trm_id']."'>".$row['defn']."</option>"; } // echo '</select>'; } else if(isset($_GET['ldbnk_acc'])) { $val=explode('$',$_GET['ldbnk_acc']); $id =$_GET['ldbnk_acc']; $sql = "select* from banks_list where bnk_id='$id' and status='0' "; $res = mysqli_query($idb,$sql) or die(mysqli_error()); echo "<select id='acc_nos' name='acc_nos' class='form-control' tabindex='5' required>"; echo "<option value=''>Select</option>"; while ($row = mysqli_fetch_array($res)) { echo "<option value='".$row['acc_no']."'>".$row['acc_no']."</option>"; } // echo '</select>'; } else { echo "<h2 align='center'>ACCESS DENIED</h2>"; header( "refresh:3;url=index.php" ); } ?>
Save