Hi I'm trying to set certain messages if certain targets aren't met but seems like my If statement wasn't implemented properly can anybody assist please... I would also like to know what should I do to round of my answers so that it don't show any decimals after the comma...
<html>
<body>
<?php
$min = ($_GET["pop"] * 20 / 100);
$max = ($_GET["pop"] * 100 / 20);
?>
You are protected from players with lower than
<?php if ($min = < 4 ) {echo "Nobody";} else {
echo $min;} ?> pop.<br>
You are protected from players with bigger than
<?php if ( $max = > 382836 ) {echo "Nobody"} else { echo $max;} ?> pop.
</body>
</html>