i m traying this simples code but nothing is displayed what type of problem showld be.
<?php
function yourname($name)
{
echo "Your name is" .$name;
}
yourname("andi");
?>
another code
<?php
$age= 18;
if ($age>=21)
{
echo 'alan';
}else{
echo 'bob';
}
?>