PHP Regular Expressions
What will be the output of the following PHP code? $name = "What is your name?"; if (preg_match("/name/"),$name) echo "My name is Will Pitt "; else echo "My name is not Will Pitt "; if (preg_match("/are/")) echo "I am great"else echo "I am not great";