PHP Functions
What will be the output of the following PHP code ?
function test($int)
{
if ($int == 1)
echo "This Works";
if ($int == 2)
echo "This Too Seems To Work";
}
test(1);
TEST(2);

This Too Seems To Work
This Works
This WorksThis Too Seems To Work
ERROR

ANSWER DOWNLOAD EXAMIANS APP