I want to make a counter on my home page that goes down with each registration. I am trying to count the number of registered users by id. I put a "?" because I do not know anymore what to put there... I would like to know how to make this work.
include 'config.inc.php';
$max = 1000;
$result = mysqli_query($mysqli, "SELECT COUNT(*) as aantal FROM aanmeldingen WHERE id ='?"); while($row = mysqli_fetch_array($result)); $aantal = $row['id'];
echo "<h2>Er zijn nog ".($max - $aantal)." plaatsen beschikbaar.</h2>"