Örnek mysql için while kullanımı;

while($yaz = mysql_fetch_object($sorgu))
{
     echo $yaz->eleman;
}

Olması gereken kodunuz;


<?php 
include("header.php");
include("mysql.php");
 
$bul = mysql_query("SELECT * From sinema");
?>
<div id='body' class='movies'>
<h2>Fılmler</h2> 
<?php
 
while($goster = mysql_fetch_array($bul)){
 
echo "
<strong>Fotoğraf :</strong> <img src='".$goster['sinemafoto']."'> </br>
<strong>İsim :</strong> ".$goster['sinemaisim']." </br>
<strong>Açıklama :</strong> ".$goster['sinemaaciklama']." </br>
<strong>Fiyat :</strong> ".$goster['fiyat']." </br>
<strong>Salon :</strong> ".$goster['salonad']."
<hr/>
"; } ?>
</div> 
 
 
 
</body>
</html>