Formulario.html
Código HTML:
Ver original
Firma.php
Código PHP:
<?php
header("Content-type: image/png");
$imagen=imageCreatefrompng("firma.png");
$id = $_GET['id'];
$fuente = 'verdana.ttf';
$color=ImageColorAllocate($imagen,255,255,255);
$xml = simplexml_load_file('http://api.erepublik.com/v2/feeds/citizens/$id');
imagefttext($imagen, 15, 0, 124, 27, $color, $fuente, $xml->name);
ImagePNG ($imagen);
ImageDestroy($imagen);
?>
Código PHP:
$xml = simplexml_load_file('http://api.erepublik.com/v2/feeds/citizens/$id');