Jump to content

php fonts


onthespot

Recommended Posts

<span class="style5">
<?
}

echo "</td></tr><tr><td align=\"center\"><br><br>";
echo "<b>Member Total:</b> ".$database->getNumMembers()."<br>";
echo "There are $database->num_active_users registered members and ";
echo "$database->num_active_guests guests viewing the site.<br><br>";

include("include/view_active.php");

?>
</span>


[i]Can someone please help me! I want to make all the "echo" information, in a certain font, say Tahoma! Can someone please modify the code for me, would be greatly appreciated!

Thankyou![/i]
Link to comment
https://forums.phpfreaks.com/topic/16752-php-fonts/
Share on other sites

mate, PMSL, i no how to do html etc, im just starting at php though! but that php code, is like something that i cant seem to be able to use html on! its information requested from the DB, and therefore i cant make the font for it like i would anything else! so i was tryin to ask where i put the html? or the font face?
Link to comment
https://forums.phpfreaks.com/topic/16752-php-fonts/#findComment-70436
Share on other sites

echo "</td></tr><tr><td align=\"center\">

";
echo "<font face=\"Tahoma\">";
echo "Member Total: ".$database->getNumMembers()."
";
echo "There are $database->num_active_users registered members and ";
echo "$database->num_active_guests guests viewing the site.
";
echo "</font>";

is what i think youre looking for... Not sure though...
Link to comment
https://forums.phpfreaks.com/topic/16752-php-fonts/#findComment-70444
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.