| Server IP : 172.64.80.1 / Your IP : 172.71.120.135 Web Server : Apache System : Linux mail.federalpolyede.edu.ng 5.10.0-32-amd64 #1 SMP Debian 5.10.223-1 (2024-08-10) x86_64 User : federalpolyede.edu.ng_idh35skikv ( 10000) PHP Version : 7.4.33 Disable Function : opcache_get_status MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/vhosts/federalpolyede.edu.ng/httpdocs_backup/admin_student/ |
Upload File : |
<?php
ob_start();
include('headMain.php');
/**
* Created by PhpStorm.
* User: adisa
* Date: 3/2/2016
* Time: 3:31 PM
*/
if(!isset($_SESSION['matNo'])){
header('location:login.php');
}
?>
<script type="text/javascript" language="javascript" src="../js/jquery-1.7.1.js"></script>
<script type="text/javascript" language="javascript" >
$(function(){
$("#idNo").change(function(){
alert ($("#idNo").val());
$.post("../js/getName.php",{idNo:$("#idNo").val()},function(data){
$("#names").html(data);
});
});
});
$(function(){
$("#ptype").change(function(){
alert ($("#ptype").val());
$.post("../js/getAmount.php",{ptype:$("#ptype").val()},function(data){
$("#amt2").html(data);
});
});
});
</script>
<div id="wrapper">
<table width="100%" align="center" cellpadding="3" cellspacing="5">
<tr>
<td><fieldset>
<legend >
<h3></h3></legend>
<form action="processpaymentb.php" method="post" name="RemitaPaymentForm" role="form">
<fieldset>
<legend>
<div class="row">
<div class="col-lg-2"></div>
<div class="col-lg-8">
<div class="panel panel-default">
<div class="panel-heading">
Other Fees Payment (<?php echo $_SESSION['matNo'] ;?>)
</div>
<div class="panel-body">
<div class="row">
<div class="col-lg-12">
<form role="form">
<table width="100%" align="center">
<tbody>
<tr>
<td>ID No (Matric No/Staff No.)</td>
<td><input name="idNo" type="text" required="required" id="idNo" value="<?php echo $_SESSION['matNo'];?>" readonly="readonly" class="form-control" /></td>
<?php
if (isset($_SESSION['idNo'])){
$idNo= $_SESSION['idNo'];
}
?>
</tr>
<tr>
<td width="200">Payer Full Name:</td>
<td id="names"><input name="payerName" type="text" class="form-control" size="45" readonly="readonly" id="payerName" value="<?php echo $_SESSION['names'];?>"></td>
</tr>
<tr>
<td width="200">Payer Email: <font color="red">*</font></td>
<td><input name="payerEmail" required value="" type="email" id="payerEmail" class="form-control"></td>
</tr>
<tr>
<td width="200">Payer Phone:</td>
<td><input name="payerPhone" value="" type="text" id="payerPhone" class="form-control"></td>
</tr>
<tr>
<td>Payment Type</td>
<td><label for="ptype"></label>
<select name="ptype" id="ptype" class="form-control">
<option value="New Transcript Request, 5000">New Transcript Request</option>
<option value="Reprint Transcript,5000">Reprint Transcript</option>
<option value="Development,10000">Development</option>
<option value="Accommodation,10000">Accommodation</option>
<option value="Certificate Levy,2000">Certificate Levy</option>
<option value="Student Association/Club Reg.,1000">Student Association/Club Reg.</option>
<option value="JAMB Regularization,6000">JAMB Regularization</option>
<option value="Change of Course Fee,5000">Change of Course Levy</option>
<option value="Late Registration Penalty Charges,5000">Late Registration Penalty</option>
<!-- <option value="Refund of Advances,0">Refund of Advances</option>-->
<option value="Other Payments,0">Other Payments</option>
</select></td>
</tr>
<tr>
<td>Payment Description</td>
<td><input name="desc" type="text" id="desc" value="" class="form-control"/></td>
</tr>
<tr>
<td width="200">Amount: <font color="red">*</font></td>
<td id="amt2"><input name="amt" type="text" required value="5000" class="form-control"readonly="readonly" id="amt"></td>
</tr>
<tr>
<td width="200">Payment Channel:</td>
<td>
<select class="required-entry form-control" title="Credit Card Type" name="paymenttype" id="paymenttype" autocomplete="off">
<option>-- Select Payment Type --</option>
<option value="VERVE"> Verve Card</option>
<option value="VISA"> Visa</option>
<option value="MASTERCARD"> MasterCard</option>
<option value="POCKETMONI"> PocketMoni</option>
<option value="POS"> POS</option>
<option value="ATM"> ATM</option>
<option value="BANK_BRANCH">BANK BRANCH</option>
<option value="BANK_INTERNET">BANK INTERNET</option>
<option value="REMITA_PAY"> Remita Account Transfer</option>
</select>
</td>
</tr>
<tr>
<td width="200"></td>
<td> <input type ="submit" name="" value="Pay" class="btn btn-primary">
<img src="../images/remitaLogo.jpg" alt="" width="418" height="90" /></td>
</tr>
<tr>
<td></td>
<td> <p><?php echo' <br /><a href="reprint_process.php"> Click to check Payment History</a>';?></td>
</tr>
<tr>
<td></td>
<!--<td> <p><?php echo' <br /><a href="remitaPaymentB.php"> Click to Pay Transcrpt Balance</a>';?></td>-->
</tr>
</tbody>
</table>
</form>
</fieldset></td>
</tr>
</table>
</div>
<?php
include('footMain.php');
?>
</div>