phpCopy<?php $mystring = "This is a PHP program."; if (strpos($mystring, "PHP", 13) !== false) { echo("True"); } else { echo("False"); } ?>