- 7 Luglio 2011
- 601
- 21
- Miglior risposta
- 0
Io Cercando in Molti Forum ho trovato come creare un vostro banner con anche gli utenti Online :O
1° Cosa Da fare:
Aprire il Blocco Note e mettere questo:
Codice PHP:
<?php
$dbhost = 'localhost';
$dbuser = 'Username';
$dbpass = 'Password';
$dbname = 'Database';
$conn = mysql_connect($dbhost, $dbuser, $dbpass) or die ('Error connecting to mysql');
mysql_select_db($dbname);
$result = mysql_query("SELECT * FROM server_status");
$row = mysql_fetch_array( $result );
$text = "Habbos Online";
$image = imagecreatefrompng('images/02.png');
$black = imagecolorallocate($image, 0, 0, 0);
imagefttext($image, 8, 0, 182, 80, $black, './verdanab.ttf', $row['users_online']);
// imagefttext($image, 8, 0, 182, 75, $black, './verdana.ttf', $text); // Remove the // ahead of this line to use it
header('Content-type: image/png');
imagepng($image);
imagedestroy($image);
?>
Dove c'è scritto:
Codice PHP:
$dbhost = 'localhost';
$dbuser = 'Username';
$dbpass = 'Password';
$dbname = 'Database';
Configurare con le vostre impostazioni...
E poi rimpiazzare con la vostra immagine qui:
Codice PHP:
$image = imagecreatefrompng('images/02.png');
Buona Fortuna... Mi fido di voi e non accetto i commenti: Come si fa? Non ci riesco!
fonte:Teen Forum
1° Cosa Da fare:
Aprire il Blocco Note e mettere questo:
Codice PHP:
<?php
$dbhost = 'localhost';
$dbuser = 'Username';
$dbpass = 'Password';
$dbname = 'Database';
$conn = mysql_connect($dbhost, $dbuser, $dbpass) or die ('Error connecting to mysql');
mysql_select_db($dbname);
$result = mysql_query("SELECT * FROM server_status");
$row = mysql_fetch_array( $result );
$text = "Habbos Online";
$image = imagecreatefrompng('images/02.png');
$black = imagecolorallocate($image, 0, 0, 0);
imagefttext($image, 8, 0, 182, 80, $black, './verdanab.ttf', $row['users_online']);
// imagefttext($image, 8, 0, 182, 75, $black, './verdana.ttf', $text); // Remove the // ahead of this line to use it
header('Content-type: image/png');
imagepng($image);
imagedestroy($image);
?>
Dove c'è scritto:
Codice PHP:
$dbhost = 'localhost';
$dbuser = 'Username';
$dbpass = 'Password';
$dbname = 'Database';
Configurare con le vostre impostazioni...
E poi rimpiazzare con la vostra immagine qui:
Codice PHP:
$image = imagecreatefrompng('images/02.png');
Buona Fortuna... Mi fido di voi e non accetto i commenti: Come si fa? Non ci riesco!
fonte:Teen Forum
Ultima modifica: