I need to compare a variable using php, I pass my code so you understand me better
$palabra ="hola=Adv&%ASa";
if($palabra == "hola="){
echo "bien";
}else{
echo "mal";
}
What I need is that I recognize any character that comes after the avocado Hello = and throw me the message of good, I think it should be with regular expressions but I do not know how to apply them in php. thanks