Jump to content

JCarousel Lite Not Showing echo' image properly


Azercii

Recommended Posts

I'm having a really hard time getting my carousel to display in a line when I call my images from the table:

<div id="user-gallery">
<h2>Recent Images</h2>

<button class="prev"><<</button>
<button class="next">>></button>


<?php
include("file/image/upload_file.php");

$select_query = "SELECT `images_path` FROM  `images_tbl` ORDER by `images_id` DESC  LIMIT 9";
$sql = mysql_query($select_query) or die(mysql_error());	
while($row = mysql_fetch_array($sql,MYSQL_BOTH)){

?>
        
<div class="anyClass">
<ul>
<li><img src="<?php echo $row["images_path"]; ?>" alt="" width="125" height="70" ></li>
<li><img src="<?php echo $row["images_path"]; ?>" alt="" width="125" height="70" ></li>
<li><img src="<?php echo $row["images_path"]; ?>" alt="" width="125" height="70" ></li>
<li><img src="<?php echo $row["images_path"]; ?>" alt="" width="125" height="70"></li>
</ul>
</div>
<?php
}
?>

</div>

Without the carousel it will display perfectly, but as soon as I implement it, the images won't behave normal :/

 

 

 

FNN0d5k.png

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.