Answers for "eslse if php"

PHP
1

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

if condition in php

easy way to execute conditional html / javascript / css / other language code with php if else:

<?php if (condition): ?>

html code to run if condition is true

<?php else: ?>

html code to run if condition is false

<?php endif ?>
Posted by: Guest on July-26-2021

Browse Popular Code Answers by Language