Forum Moderators: coopster
$message = "hello my name is iain ".(isset($this) && ($this == "yes") ? 'do this as its true' : 'do this as its false')."More text here";
//$string = "yes";
$string = "no";
$message = "hello my name is iain ".(isset($string) && ($string == "yes") ? 'do this as its true' : 'do this as its false')."More text here";
echo $message;