View Single Post
ישן 13-07-06, 19:11   # 14
A.M.F
חבר וותיק
 
מיני פרופיל
תאריך הצטרפות: Oct 2005
גיל: 34
הודעות: 1,154

A.M.F לא מחובר  

ציטוט:
נכתב במקור על ידי drowkid
http://ofry.net/gd.php
PHP קוד:
<?php
header
("content-type:image/png");
    
$im imagecreate(180,100);
   
    
$text[] = "username:".$x['username'];
    
$text[] = "level:".$x['level'];
    
$text[] = "rank:".$x['rank'];
   
    
$bg imagecolorallocate($im,255,255,255);
    
$textcolor imagecolorallocate($im,0,0,0);

$linenum "0";
foreach (
$text as $line)
{
    
imagestring($im5,0,$linenum$line,$textcolor);
$linenum $linenum+15;
}

    
imagepng($im); 
?>
תודה רבה, זה עובד
  Reply With Quote