phpMyAdmin
 sql >> Teknologi Basis Data >  >> Database Tools >> phpMyAdmin

Kode untuk membatasi pendaftaran pengguna - sembunyikan/tampilkan formulir php

<?php        
    $connection=mysqli_connect("host", "username", "password", "database");
    $sql="SELECT COUNT(*) from database_users";
    $stmt = $connection->prepare($sql);
    $stmt->execute();
    $res = $stmt->get_result();
    $users = $res->fetch_array(MYSQLI_ASSOC);

    if ($users['COUNT(*)'] < 4) {
?>

    // html goes here, outside of the php tags

<?php
    } else {

        echo "Sorry, you have reached the user account limit.";

    };
?>


  1. DBeaver
  2.   
  3. phpMyAdmin
  4.   
  5. Navicat
  6.   
  7. SSMS
  8.   
  9. MySQL Workbench
  10.   
  11. SQLyog
  1. Bagaimana mengkonversi file .sql ke tabel di mysql db

  2. Menginstal phpmyadmin dengan home-brew

  3. Instal phpMyAdmin di Google App Engine

  4. SQL Server / PHP / Alat Admin Berbasis Web - Apa saja alat seperti phpmyadmin untuk SQL Server?

  5. Buat tabel dari SQL dump yang dihasilkan oleh phpmyadmin menggunakan kohana