View Single Post
ישן 12-06-06, 15:30   # 7
Big Master
חבר בקהילה
 
מיני פרופיל
תאריך הצטרפות: Oct 2005
הודעות: 53

Big Master לא מחובר  

הנה הקוד:
PHP קוד:
<?php

header
("Content-type: image/png");
$text $_GET['text'];
$text hebrevc($text);
$text preg_replace("/([\xE0-\xFA])/e","chr(215).chr(ord(\${1})-80)",$text);
$im    imagecreatefrompng("bip.png");
$green imagecolorallocate($im02100);
imagestring($im7605$text$green);
imagepng($im);
imagedestroy($im);

?>
  Reply With Quote