Menghitung Jumlah Record MySQL Dengan MySQLI + PHP
Buat sebuah kode PHP untuk Koneksi :
$konek = mysqli_connect("localhost","root","","prakerin");
?>
Buat kode untuk menghitung record :
require_once "config/koneksi.php";
$sqlCommand = "SELECT COUNT(*) FROM tb_perusahaan";
$query = mysqli_query($konek, $sqlCommand) or die (mysqli_error());
$row = mysqli_fetch_row($query);
echo "Ada " . $row[0] . " Perusahaan.";
mysqli_free_result($query);
mysqli_close($konek);
?>
Sesuaikan dengan tabel dan nama database.
makasih berhasil gan
ReplyDeleteCari kmn2 ketemunya disini,. thanks gan
ReplyDeletealhamdulillah, thanks gan
ReplyDeleteThis comment has been removed by the author.
ReplyDeleteuntuk nilai row[0], mksundy gmn ya gan?
ReplyDelete