Senin, 31 Agustus 2015

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. 


Previous Post
Next Post