What will be the output of the following PHP code?
$num = 15;
$str = "15";
if ($num == $str) {
echo "Equal";
} else {
echo "Not Equal";
}
1
Equal
2
Not Equal
3
Error
4
None of the above