Perguntas do PHP em tarefas
<?php
function showMessage($hello=false){
echo ($hello)?'hello':'bye';
}
?>
Fine Falcon
<?php
function showMessage($hello=false){
echo ($hello)?'hello':'bye';
}
?>