Y estoy teniendo este error:
Cita:
Abajo de line 25 una lista de codigos inentendibles :PWarning: imagecopyresized(): supplied argument is not a valid Image resource in /home4/stune/public_html/web/cue/gen/imagen.php on line 18 Warning: Cannot modify header information - headers already sent by (output started at /home4/stune/public_html/web/cue/gen/imagen.php:18) in /home4/stune/public_html/web/cue/gen/imagen.php on line 25
Estos son los codigos que tengo:
Formu.html
Código HTML:
Ver original
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> </head> <form method="post" action="imagen.php"> Titulo del post: <br> <input type="text" name="titulo"> <br> Genero: <br> <input type="text" name="genero"> <br> Imagen portada del post: <br> <input type="text" name="portada"> <br> Peso: <br> <input type="text" name="peso"> <br> Servidor: <br> <input type="text" name="servidor"> <br> <input type="submit" value="Generar post!"> </form> <body> </body> </html>
Imagen.php
Código PHP:
Ver original
<?php $ancho=100; $alto=30; $titulo = $_POST['titulo']; $portada = $_POST['portada']; $peso = $_POST['peso']; $servidor = $_POST['servidor']; $genero = $_POST['genero']; $portada = $_POST['portada']; $fuente = 'verdana.ttf'; ?>
Gracias de antemano :D