Ill give you the code right fast: Just get the Volter.ttf font from Habbodown.com
Make an iframe to navigation.php like so
Navigation.php:PHP Code:<iframe name="I2" src="navigation.php?text=||| Habbo Newsie |s You |||" scrolling="no" border="0" frameborder="0" width="473" height="15" allowtransparency="true">>
Your browser does not support inline frames or is currently configured not to display inline frames.
</iframe>
gdtest.php:PHP Code:<style type="text/css">
<!--
body {
font-family: Verdana;
font-size: 10px;
background-color: transparent;
margin-left: 0px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
}
-->
</style>
<body style="background-color: transparent;">
<marquee><img src="gdtest.php?text=<? echo $_GET[text]; ?>"></marquee>
</body>
Note you must have the GD Libarys to use thisPHP Code:<?
header('Content-type: image/gif');
$im = @imagecreatefromgif('test.gif');
$black = imagecolorallocate($im, 0, 0, 0);
$font = 'Volter.ttf';
$text = $_REQUEST['text'];
imagettftext($im, 6.4, 0, 20, 10, $black, $font, stripslashes($text));
imagegif($im);
imagedestroy($im);
?>


Ill give you the code right fast: Just get the Volter.ttf font from Habbodown.com
Reply With Quote