hjkhhrterwefdgdfgdfgdfgdgdfgdfgdsvstertrt
bnmbertsdfsdfgdfgdfgfffdgdfgdfgrtdfg
/
home
/
u652258970
/
domains
/
drgreal.in
/
public_html
/
Upload FileeE
HOME
<?php ob_start(); session_start(); require "config.php"; if(!isset($_SESSION['login_username'])) { echo("<script language='javascript'>window.location.href='index.php'</script>"); exit; } $userid =$_SESSION['login_userid']; ?> <!DOCTYPE HTML> <!--[if IE 7 ]><html class="ie ie7" lang="en"> <![endif]--> <!--[if IE 8 ]><html class="ie ie8" lang="en"> <![endif]--> <!--[if (gte IE 9)|!(IE)]><!--> <html lang="en"> <!--<![endif]--> <head> <!-- Basic Page Needs --> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <title>Jaimaa Locations</title> <meta name="description" content=""> <meta name="keywords" content=""> <meta name="author" content=""> <!-- Favicon --> <link rel="shortcut icon" href="images/favicon.png"> <!-- Mobile Specific Metas --> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- CSS --> <link rel="stylesheet" href="css/bootstrap.css"> <link rel="stylesheet" href="css/style.css" type="text/css"> <link rel="stylesheet" href="css/styles.css"> <link type="text/css" rel="stylesheet" href="css/flexslider.css" id='flexslider-css-css' media="all"> <link href="assets/global/css/components.css" id="style_components" rel="stylesheet" type="text/css"/> <!-- <link rel="stylesheet" type="text/css" media="all" href="http://www.icreatemedia.co.za/wp-content/themes/2014/style.css" /> --> <!-- Just for debugging purposes. Don't actually copy this line! --> <!--[if lt IE 9]><script src="js/ie8-responsive-file-warning.js"></script><![endif]--> <!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries --> <!--[if lt IE 9]> <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script> <script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script> <![endif]--> <!---Font Css---> <link href='https://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700' rel='stylesheet' type='text/css'> <link href='https://fonts.googleapis.com/css?family=Merriweather:300' rel='stylesheet' type='text/css'> <!---End---> <link type="text/css" rel="stylesheet" href="css/responsive-tabs.css" /> </head> <body> <?php include "header.php"; ?> <div class="producs about_bg"> <div class="container"> <div class="col-md-12 col-sm-12"> <div class="contact_form"> <h2></h2> <div class="col-md-12 col-sm-12"> <div id="login-form"> <center><h3 style="font-size:20px; color:#0b622f; font-weight:bold;">Properties Details</h3> </center> <br> <table class="table table-bordered view_all" > <th></th> <th>Property Title</th> <th>Property Type</th> <th>budget</th> <th>Contact Name</th> <th>Edit</th> <th>Delete</th> <?php $query=mysql_query("select * from tbl_property WHERE userid = '$userid' ORDER BY pro_id DESC limit 15",$connection); while($row=mysql_fetch_array($query)) { ?> <tr> <td><?php echo '<img src="property/'.$row['pro_image'].'" width="20" height="20" />'?></td> <td><?php echo $row['pro_seo_title'];?></td> <td><?php echo $row['pro_property_type'];?></td> <td><?php echo $row['pro_budget'];?></td> <td><?php echo $row['own_name'];?></td> <td><?php echo '<a href="view_property.php?pro_id='.$row['pro_id'].'"><img src="images/edit.png"></a>';?></td> <td><?php echo '<a href="delete.php?pro_id='.$row['pro_id'].'" onclick="return confirm(\'Are you sure ?\')"><img src="images/close.png"></a>'?> </td> </tr> <?php }?> </table> </div> </div> <div class="col-md-4 col-sm-4"> </div> </div> </div> </div> </div> <?php include "footer.php"; ?> </body> </html>