View Single Post
ישן 25-07-07, 11:04   # 8
oryrm19
חבר בקהילה
 
oryrm19's Avatar
 
מיני פרופיל
תאריך הצטרפות: Oct 2006
מיקום: ראשון לציון
הודעות: 230
שלח הודעה באמצעות ICO אל oryrm19 שלח הודעה באמצעות MSN אל oryrm19

oryrm19 לא מחובר  

PHP קוד:
<html>
    <head>
        <title>index</title>
    </head>
    <body>
        <?
        
if($_GET['action']=="create"){
            
$image=imagecreatetruecolor(400,500);
            
$black=imagecolorallocate($image000);
            
$pink=imagecolorallocate($image2331491);
            
$text=$_POST['text'];
            
$background_color $black;
            
$text_color $pink;
            
$font 'arial.ttf';
            
imagettftext($image2001020$black$font$text);
            
            
imagepng($image);
            
            
        }
        else{
            
?>
            <form action="index.php?action=create" method="post">
                <textarea name="text" id="text"></textarea>
                <input type="submit" value="שלח" />
            </form>
        <?
        
}
        
?>
    </body>
</html>
  Reply With Quote