Answers for "php isset and test"

PHP
0

php isset and test

<?php
$action1='action1';
$action2='action2';
$test=null;
if (isset($test) && $test=='test') 
echo $action1;
else 
echo $action2;
Posted by: Guest on October-15-2021

Browse Popular Code Answers by Language