Azercii Posted July 11, 2014 Share Posted July 11, 2014 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 :/ Link to comment https://forums.phpfreaks.com/topic/289754-jcarousel-lite-not-showing-echo-image-properly/ Share on other sites More sharing options...
Azercii Posted July 11, 2014 Author Share Posted July 11, 2014 Okay, I figured it was repeating the call (the original code wouldn't show without 4 <img src> lines, now removed 3) Now to get them to display in a line Link to comment https://forums.phpfreaks.com/topic/289754-jcarousel-lite-not-showing-echo-image-properly/#findComment-1484712 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.