Answers for "php function inside if statement"

PHP
2

if condition inside echo in php

echo '<option value="'.$value.'" '.(($value=='United States')?'selected="selected"':"").'>'.$value.'</option>';
Posted by: Guest on February-11-2021
6

php inline if

/* most basic usage */
$var = 5;
$var_is_greater_than_two = ($var > 2 ? true : false); // returns true
Posted by: Guest on January-28-2020

Code answers related to "php function inside if statement"

Browse Popular Code Answers by Language