Click here to Skip to main content
15,891,136 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
This codes displays my events variable and showing the image box but not displaying the picture. Pls help
<?php
$servername = "localhost";
$username = "root";
$password = "";
$dbname = "baloon

// Create connection
$conn = new mysqli($servername, $username, $password, $dbname);
// Check connection
if ($conn->connect_error) {
    die("Connection failed: " . $conn->connect_error);
} 

$sql = "SELECT distinct events FROM  events  ORDER BY events";
$result = $conn->query($sql);

if ($result->num_rows > 0) {
    echo "<table>";
    // output data of each row
    while($row = $result->fetch_assoc()) {
     $events= $row['events'];
 //column name for image path in your db

?>	 
<tr valign='top'><td> <?php if($row['image_location'] != ""): ?>
	<img src="admin/events/uploads/<?php echo $row['image_location']; ?>" width="80px" height="80px" style="border:1px solid #333333;">
	<?php else: ?>
	<img src="images/default.png" width="80px" height="80px" style="border:1px solid #333333;">
	<?php endif; ?></td>
    <td><a href='events_process.php?events=<?php echo $events ?>'><?php echo $events ?></a></td></tr>
<?php
            echo "<hr>";
            $sn++;
        }}
		?>


What I have tried:

I have tried to echo the image direct from the path but not going. pls your swift response will be appreciate as I want the image to be poping from the DB
Posted
Comments
Richard MacCutchan 22-Jul-17 7:14am    
So what happens? Do you see anything on the page, is the file path correct ... ?
ThilinaMD 22-Jul-17 10:54am    
<img src="admin/events/uploads/<?php echo $row['image_location']; ?>" width="80px" height="80px" style="border:1px solid #333333;"> 
try this before if condition
Kornfeld Eliyahu Peter 23-Jul-17 4:57am    
What is the actual HTML you have?

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900