Ok, I want to make an IF statement, where IF the variable has certain letters in it to do something.
My guess (don't work):
$v = "ARRS"; // A user enters this value.
if($v =~ "RS") {
// If the variable contains RS
echo "Something";
}
else {
// If the variable does not contain RS
echo "Something else";
}