
09/09/2005, 01:18
|
| | Fecha de Ingreso: septiembre-2005
Mensajes: 5
Antigüedad: 19 años, 6 meses Puntos: 0 | |
Insisto en que el problema no es ese. El javascript también lo he quitado, probando únicamente el siguiente código en la web:
<html>
<head>
<title>CB Linares</title>
<body background="Fondos/FondoFrame2c.jpg" bgproperties="fixed" bgcolor="white" text="black" link="blue" vlink="purple" alink="red" style="overflow-x:hidden;">
<?
header("Content-type: image/png");
$im = imagecreate(200,200);
$fondo = imagecolorallocate ($im, 255,255,255);
$rojo = imagecolorallocate ($im, 255,0,0);
imageline($im, 100, 100, 800, 800, $fondo);
imagepng($im);
imagedestroy($im);
?>
Pero sigue sin salirme la dichosa linea.
Gracias. |