<?php
function setFont($text, $name, $size){
return "<div style='font-family: ".$name.";font-size: ".$size."'>".$text."</div>";
}
echo setFont("Hello", "tahoma", "19")
echo setFont("Welcome", "tahoma", "19")
?>
What's the trouble with my Function?