I am working on a movie website using PHP, HTML, CSS, and Bootstrap.
My goal is to have the movies displayed horizontally with 3 movies per row instead of vertically like they are currently shown.
https://i.sstatic.net/LmPJU.png
Below is a segment of my code snippet:
$display_content .= '
<div class="container mt-5 text-center">
<div class="d-inline">
<img src="'.$sub_row["poster_url"].'" class="img-responsive img-thumbnail"/>
<h4>'.$sub_row["title"].'</h4>
<p>'.$sub_row["description"].'</p>
<p>'.$sub_row["duration"].'</p>
</div>
</div>
';