Ok so i have been searching but this specific part i cant get, how do i echoinformation from my sql database with php into my div so i keep the same formating
<div class="wrapper pad_bot3">
<figure class="left marg_right1"><img src="images/page1_img4.jpg" alt=""></figure>
<p class="pad_bot1"><strong class="color2">Chateau Lingfield</strong></p>
<p class="pad_bot1"><strong class="color2">3 baths, 6 beds, building size: 5000 sq. ft.<br>
Price: <span class="color1">$ 600 000</span></strong></p>
<a href="#" class="button">Read more</a>
</div>
i was thinking something like this? but it dosent work
<div class="wrapper pad_bot3">
echo " <figure class="left marg_right1"><img src=$row['photourl'] alt=""></figure>";
echo " <p class="pad_bot1"><strong class="color2">$row['parish']</strong></p>";
echo "<p class="pad_bot1"><strong class="color2">$row['bedroom'],$row['bathroom'] <br>";
echo " Price: <span class="color1">$row['status'] </span></strong></p>
<a href="#" class="button">Read more</a>
</div>