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

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

לא עובד...

הנה הקוד-

PHP קוד:

header
("content-type:image/png");
    
$im imagecreate(180,100);
   
    
$text "username:".$x['username']."\n";
    
$text .= "level:".$x['level']."\n";
    
$text .= "rank:".$x['rank'];
   
    
$bg imagecolorallocate($im,255,255,255);
    
$textcolor imagecolorallocate($im,0,0,0);
    
imagestring($im5,4,2$text,$textcolor);
    
imagepng($im); 
והנה איך שנראית התמונה-


התוו המוזר אחרי הtest..
  Reply With Quote