PHP ternary operator
Posted Date:11-07-2017 In this post we will explain PHP ternary operator. Example: In this example we are using if else condition <?php $a=16; if($a>18) { echo “Eligible For Vote”; } else { echo “Not Eligible For Vote”; } ?> In the above example $a value is greater than 18 eligible… Continue Reading PHP ternary operator