$textone = \"pate\"; //$_GET
$texttwo = \"tape\";
$texttre = \"tapp\";
if ($textone ??? $texttwo) {
echo \"The two strings contain the same letters\";
}
if ($texton
use === and !==
if ($textone === $texttwo) {
echo "The two strings contain the same letters";
}else{
echo "The two strings NOT contain the same letters";
}
or
if ($textone === $texttwo) {
echo "The two strings contain the same letters";
}
if ($textone !== $texttwo) {
echo "The two strings NOT contain the same letters";
}