Mình có 1 code 1 file ma.php nội dung như sau
PHP:
<?php
Session_start();
$no=rand(0,5000);
$img_handle = imageCreateFromPNG("bg.png");
$color = ImageColorAllocate ($img_handle, 100, 100, 100);
//$ip = $_SERVER['REMOTE_ADDR'];
ImageString ($img_handle, 7, 10, 9, "$no", $color);
$_SESSION['number']=$no;
Header("content-type:image/PNG");
ImagePng ($img_handle);
//ImageDestroy ($img_handle);
?>
mình chạy trên windows thì chạy ok ,mình up lên ubuntu thì chạy ko được nó ko hiển thị mã .Mọi người biết giúm mình với
PHP:
<?php
Session_start();
$no=rand(0,5000);
$img_handle = imageCreateFromPNG("bg.png");
$color = ImageColorAllocate ($img_handle, 100, 100, 100);
//$ip = $_SERVER['REMOTE_ADDR'];
ImageString ($img_handle, 7, 10, 9, "$no", $color);
$_SESSION['number']=$no;
Header("content-type:image/PNG");
ImagePng ($img_handle);
//ImageDestroy ($img_handle);
?>
mình chạy trên windows thì chạy ok ,mình up lên ubuntu thì chạy ko được nó ko hiển thị mã .Mọi người biết giúm mình với