Pagina 1 din 1

Afisare cod php intr-o imagine!

Scris: Dum Iun 24, 2012
de Mario
Cum as putea sa fac ca aceste informatii din script sa fie afisate intr-o imagine, gen o semnatura dinamica?

Cod: Selectaţi tot

<?php

$functions = new functions();


$PlayerInfo = $functions->GetPlayerInfo($_GET['username']); // $data

if($PlayerInfo == true)
{
       echo "Level: " .$PlayerInfo['Level']."";
   echo "<br />";
   echo "Varsta: " .$PlayerInfo['Age']."";
       echo "<br />";
   echo "Admin Level: " .$PlayerInfo['AdminLevel']."";
       echo "<br />";
       echo "VIP Level: " .$PlayerInfo['VIPLevel']."";
       echo "<br />";
   echo "Admin Level: " .$PlayerInfo['AdminLevel']."";
       echo "<br />";
       echo "Bani: " .$PlayerInfo['Money']."$";
       echo "<br />";
       echo "Bani Banca: " .$PlayerInfo['Bank']."$";
       echo "<br />";
   echo "Respect Points: " .$PlayerInfo['Respect']."";
       echo "<br />";
   echo "Warnuri: " .$PlayerInfo['Warnings']."/5";
       echo "<br />";
   echo "Kills: " .$PlayerInfo['Kills']."";
       echo "<br />";
   echo "Deaths: " .$PlayerInfo['Deaths']."";
}
else
{
   echo "Nu pot afisa statisiticile , schimba parola la cont !";
}
?>
Sa vina ceva de genul

Cod: Selectaţi tot

user.php?username=NUME_CONT&bg=1
Stima!

Afisare cod php intr-o imagine!

Scris: Joi Iun 28, 2012
de MarPlo
Salut
Vezi la lectia Creare imagini cu PHP. Este exemplu de creare imagine cu php, cu text in ea.
Formezi intr-o variabila textul /sirul care vrei sa apara in imagine, si aplici functiile prezentate in exemplu din acel tutorial.