1/* most basic usage */
2$var = 5;
3$var_is_greater_than_two = ($var > 2 ? true : false); // returns true
1<?php
2#Syntex
3(if Condition) ? (stat1) : (stat2);
4
5#example
6$var1 = 5;
7$var2 = 2;
8
9echo $check = ($var1 > $var2) ? "right" : "wrong";
10
11#output : right
12/*
13explination : if condition is true then display the stat1 and if condition is
14worng then display stat2
15*/
16?>