Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
$num1 = 9;
$num2 = 9;
if ( $num1 == $num2 ) { ...do stuff; }
$string1 = "NAME";
$string2 = "NAME";
if ( $string1 eq $string2 ) { ...do stuff; }
if ( defined($a = $b)) { ..do stuff; }