Re: Change font in PHP



Some example: (PHP source)
<?php
$variable = "This is variable text";
echo "<font face='arial'>".$variable."</font>";
?>
Now execute this. You'll see: (HTML source)
<font face='arial'>This is variable text</font>

.