Link to home
Start Free TrialLog in
Avatar of BR
BRFlag for Türkiye

asked on

printing out the data after php while loop

Dear Experts,
I select data from my database which has my stored images paths.
I select them then print them on the screen. However they are not adjacent ( side by side ). Since I use table, every one of them in a  different row.
How can I put them side by side? I tried to do it with <div> but I couldn't.

$sql8 = "SELECT xxxxx FROM resimler where uid='$uid' and ilanid='$ilanid' order by id";
$result8 = $conn->query($sql8);

  
    while($row8 = $result8->fetch_assoc()) {
	
	$id= $row8["id"];
	$ilantarihi= $row8["ilantarihi"];
	$resim= $row8["resim"];
	
	//echo "<div style=width:auto; float:left>
//<img class=kucult src=$resim /> </div>";
		echo "<table><tr><td>
<img class=kucult src=$resim /></td></tr></table>";

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of Mukesh Yadav
Mukesh Yadav
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of BR

ASKER

Dear Mukesh Yadav,
 It's not the case. I don't think it is something to do with double quotes or not.

I think my div or table structure is wrong.
Avatar of BR

ASKER

I did it like this:

I created the table out of the while loop, and I close the table again outside of the while loop.

I only used the <td> tag inside the while loop.
It solved my problem.
Avatar of BR

ASKER

Actually I need a replace function
I want to replace empty space with something
Avatar of BR

ASKER

Thanks for the reply