How can I make pictures, I retrieved from the database to be on different rows....like 4 by 4 rows | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

How can I make pictures, I retrieved from the database to be on different rows....like 4 by 4 rows

<table> <?php { $getprofilequery = $projectconnection->prepare("SELECT * FROM infolist WHERE(name LIKE ? || city LIKE ? || path LIKE ?) && email != ?"); $getprofilequery->execute(array("%","%" ,"%",$_SESSION['loginemail'])); while($getprofilequeryval = $getprofilequery->fetch(PDO::FETCH_ASSOC)) { ?> <td> <div> <img style="width:150px; height: 150px;" src="<?php echo $getprofilequeryval['path']; ?>" alt="Photo" /> </div> </td> <?php } } ?>

23rd Aug 2018, 3:40 PM
Falodun Ebenezer Tosin
1 Answer
+ 1
Hi Falodun Ebenezer Tosin have you solved this case yet? I have some questions. What if the number of records are less than or greater than 16? you said you want it to be 4x4, 4 rows with 4 columns each, what if there was only 13? then there will be empty columns?, and what if there was 20?
24th Aug 2018, 12:30 PM
Ipang