I make a looping system in my localhost use xampp and it's work in my friend localhost also work. but when I upload it to hosting it's not working and when I try in mac local host, it not working to.
my looping system is very simple.
<?php
include 'koneksi.php';
$tampil=$db->query("SELECT * FROM soal ORDER BY Rand()");
while($data=$tampil->fetch_object()){
?>
<h3>hallo</h3>
<?php
}
?>