I figured it out, thanks for any help you were about to give LOL.
🙂
Here is my code if your want to take a look.
$dblink = mysql_connect("localhost","root","");
mysql_select_db("modcart",$dblink);
$query = mysql_query("select * from products",$dblink);
for($x=0;$x<mysql_num_rows($query);$x++){
$row = mysql_fetch_array($query);
$image = $row['product_image'];
$check = $x / 2;
echo "<img src=$image width=50 height=50>";
if(is_float($check)){
echo "<br>";
}
}