<?php $a = 10; if ($a >= 0) { echo 'Positive Number <br>'; if ($a % 10 === 0) { echo 'The number is a multiple of 10'; } } else { echo 'Negative Number. Please enter a positive one'; }