I have a table for users already created so for example I will run a query which will SELECT * FROM users WHERE accType='1' and I am looking to run a foreach loop on the results and put each result into this element
<div class="title-desc-wrap col-xs-12 col-md-8">
<div class="title-wrap "><h4><a href="LINK TO USERS PROFILE">User Name</a></h4></div>
<div class="excerpt-wrap">PROFILE PICTURE</div>
</div>
I want to restrict the page to only show 8 users on each page. How would I go about structuring this foreach loop in PHP?
accType='1'should beaccType=1.