Wednesday, May 18, 2016

Menghitung Jumlah Record MySQL Dengan MySQLI + PHP

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.

5 comments:

http://www.resepkuekeringku.com/2014/11/resep-donat-empuk-ala-dunkin-donut.html http://www.resepkuekeringku.com/2015/03/resep-kue-cubit-coklat-enak-dan-sederhana.html http://www.resepkuekeringku.com/2014/10/resep-donat-kentang-empuk-lembut-dan-enak.html http://www.resepkuekeringku.com/2014/07/resep-es-krim-goreng-coklat-kriuk-mudah-dan-sederhana-dengan-saus-strawberry.html http://www.resepkuekeringku.com/2014/06/resep-kue-es-krim-goreng-enak-dan-mudah.html http://www.resepkuekeringku.com/2014/09/resep-bolu-karamel-panggang-sarang-semut-lembut.html