Ieri sera mi hai contattato via MSN, ecco lo script:
Codice PHP:
<?
$id=$_GET['id'];
$op_db=file("db_news.txt");
foreach($op_db as $val){
list($id2,$nome,$data,$testo,$titolo,$mail,$foto)=explode("|",$val);
if ($id==$id2)
break;
}
$img = imagecreatefromjpeg('$foto.jpg');
$color = imagecolorallocate($img, 0, 0, 0);
$text="© SilverSeraph";
imagettftext($img, 11, 0, 25, 25, $color, "verdana.ttf", $text);
header("content-type: image/jpeg");
imagejpeg($img);
imagedestroy($img);
?>
Poi per visualizzare l'immagine basta mettere:
Codice HTML:
<img src="immagine.php?id=2" alt="">