GOOGLE

aku nok ndi : /home/astwardha/public_html/admin/
File Up :
aku nok ndi : /home/astwardha/public_html/admin/listingDetails.php

<?php include("header.php");?>
<script src="../jquery.min.js"></script>
  <link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
  <link rel="stylesheet" href="/resources/demos/style.css">
  <script src="https://code.jquery.com/jquery-1.12.4.js"></script>
  <script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
  <script>
  $( function() {
    $( "#datepicker" ).datepicker();
  } );
   $( function() {
    $( "#datepicker1" ).datepicker();
  } );
  </script>
<script type="text/javascript">
$(document).ready(function(){
    $('#country').on('change',function(){
        var countryID = $(this).val();
        if(countryID){
            $.ajax({
                type:'POST',
                url:'ajaxData.php',
                data:'country_id='+countryID,
                success:function(html){
                    $('#state').html(html);
                    $('#city').html('<option value="">Select state first</option>'); 
                }
            }); 
        }else{
            $('#state').html('<option value="">Select country first</option>');
            $('#city').html('<option value="">Select state first</option>'); 
        }
    });
    
    $('#state').on('change',function(){
        var stateID = $(this).val();
        if(stateID){
            $.ajax({
                type:'POST',
                url:'ajaxData.php',
                data:'state_id='+stateID,
                success:function(html){
                    $('#city').html(html);
                }
            }); 
        }else{
            $('#city').html('<option value="">Select state first</option>'); 
        }
    });
});
</script>
		<!-- start: Header -->
	<div class="navbar">
		<div class="navbar-inner">
			<?php include("top_header.php");?>
		</div>
	</div>
	<!-- start: Header -->
	
		<div>
		<div class="row-fluid">
				
			<!-- start: Main Menu -->
			<?php include("sidebar.php");?>
			<!-- end: Main Menu -->
			
			<noscript>
				<div class="alert alert-block span10">
					<h4 class="alert-heading">Warning!</h4>
					<p>You need to have <a href="" target="_blank">JavaScript</a> enabled to use this site.</p>
				</div>
			</noscript>
			
			<!-- start: Content -->
			<div id="content" class="span10">
			
			
			<ul class="breadcrumb">
				<li>
					<i class="icon-home"></i>
					<a href="index.html">Home</a> 
					<i class="icon-angle-right"></i>
				</li>
				<li><a href="#">Dashboard</a></li>
			</ul>

			<div class="row-fluid sortable">
				<div class="box span12">
					<div class="box-header" data-original-title>
						<h2><i class="halflings-icon edit"></i><span class="break"></span>User Details</h2>
						<div class="box-icon">
							<a href="#" class="btn-setting"><i class="halflings-icon wrench"></i></a>
							<a href="#" class="btn-minimize"><i class="halflings-icon chevron-up"></i></a>
							<a href="#" class="btn-close"><i class="halflings-icon remove"></i></a>
						</div>
					</div>
					<div class="box-content">
					<?php $sql = mysql_query("select * from `listing` where `id`='".$_GET['id']."'");?>
					<?php $row = mysql_fetch_array($sql); ?>
					<table>
						<tr>
							<td><form class="form-horizontal" method="POST" enctype="multipart/form-data">
						<fieldset>
						<div class="control-group">
							  <label class="control-label" for="date01">Listing Name</label>
							  <div class="controls">
								<input type="text"   value="<?php echo $row['listing_name'];?>"  readonly="">
							  </div>
							</div>
							<div class="control-group">
							  <label class="control-label" for="date01">Category Name</label>
							  <div class="controls">
							  <?php $Subcate = mysql_query("select `sub_cate_name`,`cate_id` from `sub_category` where `id`='".$row['sub_category_name']."'");?>
							  <?php $SubcateName = mysql_fetch_array($Subcate);?>
							  <?php $CAte = mysql_query("select `category_name` from `category` where `id`='".$SubcateName['cate_id']."'");?>
							  <?php $cateNAme = mysql_fetch_array($CAte);?>
								<input type="text"   value="<?php echo $cateNAme['category_name'];?>"  readonly="">
							  </div>
							</div>
							<div class="control-group">
							  <label class="control-label" for="date01">Sub Category Name</label>
							  <div class="controls">
								<input type="text"   value="<?php echo $SubcateName['sub_cate_name'];?>"  readonly="">
							  </div>
							</div>
							<div class="control-group">
							  <label class="control-label" for="date01">Start Date</label>
							  <div class="controls">
								<input type="text"   value="<?php echo $row['start_date'];?>"  readonly="">
							  </div>
							</div>
							<div class="control-group">
							  <label class="control-label" for="date01">End Date</label>
							  <div class="controls">
								<input type="text"   value="<?php echo $row['end_date'];?>"  readonly="">
							  </div>
							</div>

							
							<div class="control-group">
							  <label class="control-label" for="date01">Site Address</label>
							  <div class="controls">
							  <textarea readonly><?php echo $row['site_address']; ?></textarea>
							  </div>
							</div>
							
                           
							
						  </fieldset>
						</form></td>
							<td><form class="form-horizontal" method="POST" enctype="multipart/form-data">
						<fieldset>
						 <div class="control-group">
							  <label class="control-label" for="date01">Mobile No</label>
							  <div class="controls">
								<input type="text"  id="datepicker1" value="<?php echo $row['mobile'];?>" readonly="">
							  </div>
							</div>
							
							<div class="control-group">
							  <label class="control-label" for="date01">Current Plan</label>
							  <div class="controls">
								<input type="text"  id="datepicker1" value="<?php echo $row['plan'];?>" readonly="">
							  </div>
							</div>
						<div class="control-group">
							  <label class="control-label" for="date01">Land Line Number</label>
							  <div class="controls">
								<input type="text"   value="<?php echo $row['landline'];?>"  readonly="">
							  </div>
							</div>
							
							<div class="control-group">
							  <label class="control-label" for="date01">Date Time</label>
							  <div class="controls">
								<input type="text"   value="<?php echo $row['date_time'];?>"  readonly="">
							  </div>
							</div>
							<div class="control-group">
							  <label class="control-label" for="date01">Mobile No</label>
							  <div class="controls">
								<input type="text"   value="<?php echo $row['mobile'];?>"  readonly="">
							  </div>
							</div>
							

							
							<div class="control-group">
							  <label class="control-label" for="date01">Corosponding Address</label>
							  <div class="controls">
							  <textarea readonly><?php echo $row['c_address'];?></textarea>
							  </div>
							</div>
                            
							
							
							
						  </fieldset>
						</form></td>
						</tr>
						</table>
						<table cellspacing="10" cellpadding="10">
						<tr>
						<td><img src="../upload/listing/<?php echo $row['main_image'];?>" width="150"></td><td><img src="../upload/listing/<?php echo $row['sub_image1'];?>" width="150"></td><td><img src="../upload/listing/<?php echo $row['sub_image2'];?>" width="150"></td>
						<td><img src="../upload/listing/<?php echo $row['sub_image3'];?>" width="150"></td>
						<td><img src="../upload/listing/<?php echo $row['sub_image4'];?>" width="150"></td>
						<td><img src="../upload/listing/<?php echo $row['sub_image5'];?>" width="150"></td>
						</tr>
					</table>
						   <div class="form-actions">
							  <a href="view_listing.php?id=<?php echo $_GET['ids'];?>" class="btn btn-primary" value="Save changes">Back To Customer Page</a>
							</div>

					</div>
				</div><!--/span-->

			</div>		

	</div><!--/.fluid-container-->
	
			<!-- end: Content -->
		</div><!--/#content.span10-->
		</div><!--/fluid-row-->
		
	<div class="modal hide fade" id="myModal">
		<div class="modal-header">
			<button type="button" class="close" data-dismiss="modal">×</button>
			<h3>Settings</h3>
		</div>
		<div class="modal-body">
			<p>Here settings can be configured...</p>
		</div>
		<div class="modal-footer">
			<a href="#" class="btn" data-dismiss="modal">Close</a>
			<a href="#" class="btn btn-primary">Save changes</a>
		</div>
	</div>
	
	<div class="clearfix"></div>
	
	<footer>

		<p>
			<span style="text-align:left;float:left">&copy; 2013 <a href="http://jiji262.github.io/Bootstrap_Metro_Dashboard/" alt="Bootstrap_Metro_Dashboard">Bootstrap Metro Dashboard</a></span>
			
		</p>

	</footer>
	
	<!-- start: JavaScript-->

		<script src="js/jquery-1.9.1.min.js"></script>
	<script src="js/jquery-migrate-1.0.0.min.js"></script>
	
		<script src="js/jquery-ui-1.10.0.custom.min.js"></script>
	
		<script src="js/jquery.ui.touch-punch.js"></script>
	
		<script src="js/modernizr.js"></script>
	
		<script src="js/bootstrap.min.js"></script>
	
		<script src="js/jquery.cookie.js"></script>
	
		<script src='js/fullcalendar.min.js'></script>
	
		<script src='js/jquery.dataTables.min.js'></script>

		<script src="js/excanvas.js"></script>
	<script src="js/jquery.flot.js"></script>
	<script src="js/jquery.flot.pie.js"></script>
	<script src="js/jquery.flot.stack.js"></script>
	<script src="js/jquery.flot.resize.min.js"></script>
	
		<script src="js/jquery.chosen.min.js"></script>
	
		<script src="js/jquery.uniform.min.js"></script>
		
		<script src="js/jquery.cleditor.min.js"></script>
	
		<script src="js/jquery.noty.js"></script>
	
		<script src="js/jquery.elfinder.min.js"></script>
	
		<script src="js/jquery.raty.min.js"></script>
	
		<script src="js/jquery.iphone.toggle.js"></script>
	
		<script src="js/jquery.uploadify-3.1.min.js"></script>
	
		<script src="js/jquery.gritter.min.js"></script>
	
		<script src="js/jquery.imagesloaded.js"></script>
	
		<script src="js/jquery.masonry.min.js"></script>
	
		<script src="js/jquery.knob.modified.js"></script>
	
		<script src="js/jquery.sparkline.min.js"></script>
	
		<script src="js/counter.js"></script>
	
		<script src="js/retina.js"></script>

		<script src="js/custom.js"></script>
	<!-- end: JavaScript-->
	
</body>
</html>

Copyright © 1945 - 2024 GOOGLE