<?phpecho strcasecmp("Hello world!","HELLO WORLD!")."<br>"; // The two strings are equalecho strcasecmp("Hello world!","HELLO")."<br>"; // String1 is greater than string2echo strcasecmp("Hello world!","HELLO WORLD! HELLO!")."<br>"; // String1 is less than string2?>