| Server IP : 92.204.40.98 / Your IP : 216.73.216.201 Web Server : LiteSpeed System : Linux amster.dnsfors.com 4.18.0-553.111.1.el8_10.x86_64 #1 SMP Sun Mar 8 20:06:07 EDT 2026 x86_64 User : tmksyste ( 2190) PHP Version : 8.3.31 Disable Function : exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/tmksyste/domains/tmksystems.in/private_html/applications/ |
Upload File : |
<!DOCTYPE HTML>
<html>
<head>
<title>Channel4Net | Admin Panel</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="keywords" content="Glance Design Dashboard Responsive web template, Bootstrap Web Templates, Flat Web Templates, Android Compatible web template,
SmartPhone Compatible web template, free WebDesigns for Nokia, Samsung, LG, SonyEricsson, Motorola web design" />
<script type="application/x-javascript"> addEventListener("load", function() { setTimeout(hideURLbar, 0); }, false); function hideURLbar(){ window.scrollTo(0,1); }
function getvalues(){
var str = document.getElementById('customer_id').value;
if(str=="others" ){
document.getElementById('load1').innerHTML='<input type="text" class="form-control" id="inputLand" placeholder="Other" name="other" style="float:right; width:49%;" required><div class="clearfix">
</div>';
</script>
<!-- Bootstrap Core CSS -->
<link href="css/bootstrap.css" rel='stylesheet' type='text/css' />
<!-- Custom CSS -->
<link href="css/style.css" rel='stylesheet' type='text/css' />
<!-- font-awesome icons CSS -->
<link href="css/font-awesome.css" rel="stylesheet">
<!-- //font-awesome icons CSS -->
<!-- side nav css file -->
<link href='css/SidebarNav.min.css' media='all' rel='stylesheet' type='text/css'/>
<!-- side nav css file -->
<!-- js-->
<script src="js/jquery-1.11.1.min.js"></script>
<script src="js/modernizr.custom.js"></script>
<!--//js-->
<!--webfonts-->
<link href="//fonts.googleapis.com/css?family=PT+Sans:400,400i,700,700i&subset=cyrillic,cyrillic-ext,latin-ext" rel="stylesheet">
<!--//webfonts-->
<!-- Metis Menu -->
<script src="js/metisMenu.min.js"></script>
<script src="js/custom.js"></script>
<link href="css/custom.css" rel="stylesheet">
<!--//Metis Menu -->
<script type="text/javascript">
function CheckColors(val){
var element=document.getElementById('color');
if(val=='Marketing'||val=='Newspaper'||val=='Reference')
element.style.display='block';
else
element.style.display='none';
}
</script>
</head>
<body class="cbp-spmenu-push">
<div class="main-content">
<?php include('sidemenu.php');?>
<?php include('connection.php');?>
<!-- main content start-->
<div id="page-wrapper">
<div class="main-page">
<div class="forms validation">
<h2 class="title1">Add Payment Pending Customer :</h2>
<div class="row">
<div class="col-md-6 validation-grids widget-shadow" data-example-id="basic-forms">
<div class="form-title">
<h4>New Customer Details :</h4>
</div>
<div class="form-body">
<form data-toggle="validator" action="payment_add_code.php" method="post">
<?php
$pid=$_GET['id'];
$sql331="select * from leads where lid='$pid'";
$result331=mysql_query($sql331);
$row331=mysql_fetch_array($result331);
$sqlcustomer="select * from customer_details where lid='$pid'";
$resultcustomer=mysql_query($sqlcustomer);
$rowcustomer=mysql_fetch_array($resultcustomer);
?>
<div class="form-group">
<select class="form-control" name="customer_id" style="float:left; width:49%;" onchange="window.location='payment_add.php?id=' + this.value;">
<?php
if($_GET['id']!=""){?>
<option value="<?php echo $row331['lid'];?>"><?php echo $row331['name_firm'];?></option>
<?php }?>
<option value="0">Select Firm Name</option>
<?php
$sql="select * from marketing_activities where lead_status='Customer' order by mid desc";
$result=mysql_query($sql)or die(mysql_error());
while($row=mysql_fetch_array($result))
{$lid=$row['lid'];
$sql1="select * from leads where lid='$lid'";echo $sql1;
$result1=mysql_query($sql1);
$row1=mysql_fetch_array($result1);?>
<option value="<?php echo $row1['lid'];?>"><?php echo $row1['name_firm'];?></option>
<?php }?>
</select>
<input type="text" class="form-control" id="inputLand" placeholder="Work Details" name="work_details" style="float:right; width:49%;" required><div class="clearfix">
</div>
</div>
<div class="form-group">
<input type="text" class="form-control" id="inputLand" placeholder="Followup Person Name" name="person_name" style="float:left; width:49%;" value="<?php echo $row331['contact_name1'];?>" required>
<input type="text" class="form-control" id="inputLand" placeholder="Designation" name="designation" style="float:right; width:49%;" value="<?php echo $row331['designation1'];?>"><div class="clearfix">
</div>
</div>
<div class="form-group">
<input type="text" class="form-control" id="inputLand" placeholder="Phone Number" name="phone" style="float:left; width:49%;" value="<?php echo $row331['number1'];?>" required>
<input type="text" class="form-control" id="inputLand" placeholder="Order Number" name="Invoice_number" style="float:right; width:49%;" value="<?php echo $rowcustomer['order_no'];?>" required><div class="clearfix">
</div>
</div>
<div class="form-group">
Order Date<br>
<input type="date" class="form-control" id="inputEmail" placeholder="Invoice Date" name="Invoice_date" style="float:left; width:49%; " required>
<input type="text" class="form-control" id="inputEmail" placeholder="Total Amount" name="tamount" style="float:right; width:49%; " required>
<div class="clearfix"></div>
</div>
<div class="form-group">
<input type="text" class="form-control" id="inputEmail" placeholder="Pending Amount" name="pending_amount" required>
</div>
<div class="form-group">
<button type="submit" class="btn btn-primary disabled" name="submit">Submit</button>
</div>
</form>
</div>
</div>
<div class="clearfix"> </div>
</div>
</div>
</div>
</div>
<?php include('footer.php');?>
</div>
<!-- side nav js -->
<script src='js/SidebarNav.min.js' type='text/javascript'></script>
<script>
$('.sidebar-menu').SidebarNav()
</script>
<!-- //side nav js -->
<!-- Classie --><!-- for toggle left push menu script -->
<script src="js/classie.js"></script>
<script>
var menuLeft = document.getElementById( 'cbp-spmenu-s1' ),
showLeftPush = document.getElementById( 'showLeftPush' ),
body = document.body;
showLeftPush.onclick = function() {
classie.toggle( this, 'active' );
classie.toggle( body, 'cbp-spmenu-push-toright' );
classie.toggle( menuLeft, 'cbp-spmenu-open' );
disableOther( 'showLeftPush' );
};
function disableOther( button ) {
if( button !== 'showLeftPush' ) {
classie.toggle( showLeftPush, 'disabled' );
}
}
</script>
<!-- //Classie --><!-- //for toggle left push menu script -->
<!--scrolling js-->
<script src="js/jquery.nicescroll.js"></script>
<script src="js/scripts.js"></script>
<!--//scrolling js-->
<!-- Bootstrap Core JavaScript -->
<script src="js/bootstrap.js"> </script>
<!--validator js-->
<script src="js/validator.min.js"></script>
<!--//validator js-->
</body>
</html>