Why does not display a random number on the page?
index.php :
<form action="random.php" method="POST"> <h1>Random number is <span id="rnd-num"> <?php include_once 'random.php' ?> </span></h1> <br> <input type="text" class="form-control input-lg inp-rand" placeholder="Min (not necessary)" name="min"/> <input type="text" class="form-control input-lg inp-rand" placeholder="Max (not necessary)" name="max" /> <p><a type="submit" class="btn btn-primary btn-lg btn-rand" role="button">Random </a> </p> </form> random.php :
<?php $min = $_POST['min']; $max = $_POST['max']; echo rand($min, $max); ?>