View difference between Paste ID: r06wcncP and 4ypdXNag
SHOW: | | - or go back to the newest paste.
1
<?php
2-
			$query=mysqli_query($conn,"SELECT*FROM property LIMIT $offset,$total_records_per_page".$queryCondition);
2+
3
$query = "SELECT*FROM property LIMIT $offset,$total_records_per_page".$queryCondition;
4
$result = mysqli_query($conn,$query);
5-
?>
5+
6-
			<?php while($row = mysqli_fetch_array($query)) { 
6+
echo 'Query: ' . $query . '<br>';
7-
				
7+
echo 'Error: ' . mysqli_error($conn);
8-
				$id=$row['id'];
8+
9-
$img=$row['image'];
9+