Muy buena la historia no pensé que fuera tan buena y influyente, ojala que pueda ser parte de esta historia.
Saludos, Dacan
Saludos, Dacan

Esta sección te permite ver todos los mensajes escritos por este usuario. Ten en cuenta que sólo puedes ver los mensajes escritos en zonas a las que tienes acceso en este momento.
Mostrar Mensajes Menú$cantidades[count($cantidades)] = (int)$temp[0];
$Round = round($tuvariable,2);
<?php
$numero= 200;
$numerofinal = number_format($numero, 2, '.', '');
echo $numerofinal;
?>
<?
if($_GET['id'] == NULL){
header("Location: http://dacanphp.net46.net/perfiles.php?id=230112");
}
// Url Perfil
$perfil = file_get_contents("http://foro.elhacker.net/index.php?&action=.xml;sa=profile;u=".$_GET['id']);
// Nombre
$nombre = explode('<username><![CDATA[', $perfil);
$nombre = explode(']]></username>', $nombre[1]);
// Post
$post = explode('<posts>', $perfil);
$post = explode('</posts>', $post[1]);
// Genero
$genero = explode('<gender><![CDATA[', $perfil);
$genero = explode(']]></gender>', $genero[1]);
if (!eregi("</gender>", $perfil)){
$genero[0] = "No definid@";
}
// Edad
$edad = explode('<age>', $perfil);
$edad = explode('</age>', $edad[1]);
if (!eregi("</age>", $perfil)){
$edad[0] = "No definida";
}
// Localizacion
$local = explode('<location><![CDATA[', $perfil);
$local = explode(']]>', $local[1]);
if (!eregi("<location>", $perfil)){
$local[0] = "No definida";
}
header("Content-type: image/png");
$im = imagecreate(350, 110);
$fondo = imagecolorallocate($im, 0, 0, 0);
$texto = imagecolorallocate($im, 255, 255, 255);
$texto2 = imagecolorallocate($im, 255, 0, 0);
$texto3 = imagecolorallocate($im, 0, 0, 255);
imagestring($im, 12, 20, 5, "Nick: ".$nombre[0], $texto);
imagestring($im, 12, 20, 20, "Post's: ".$post[0], $texto);
imagestring($im, 12, 20, 35, "Genero: ".$genero[0], $texto);
imagestring($im, 12, 20, 50, "Edad: ".$edad[0], $texto);
imagestring($im, 12, 20, 65, "Localizacion: ".$local[0], $texto);
imagestring($im, 12, 20, 85, "Creado por Dacan", $texto2);
imagestring($im, 12, 180, 85, "Elhacker.net", $texto3);
imagepng($im);
?>