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.
# define a string (scalar) variable
$a_string = 'Hello World';
# does the string contain the word 'Hello' in it?
if( [blue]index( $a_string, 'Hello' ) >= 0[/blue] ) {
print "It does!\n";
} else {
print "It doesn't\n";
}