In this example, I will tell you how to use HTML code inside PHP code.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | <?php $Desired_Number=7; echo "Please Enter a Desired_Number: "; echo $Desired_Number; echo "<br>"; if($Desired_Number<0) { echo "Desired_Number is negative NUMBER"; } else { echo "Desired_Number is positive NUMBER"; } ?> |
Similar Problems to understand
- How to use HTML code in PHP?
- How to use Javascript code in PHP?
- How to use PHP code in Javascript?
- How to use external CSS in HTML and PHP?
- How to use internal CSS in HTML and PHP?
- How to use inline CSS in HTML and PHP?