resulta ke en estos dias he kerido hacer un sistema de comentarios con avatar incluido... pero al cabo d unos dias, me di cuenta de ke eso d poner avatars es algo perjudicial si no puedo controlar el tamaño d los mismos... por lo tanto hice un codigo en donde comprobara ke el width y el height dl avatar fueran menores a un tamaño pre-establecido, pero al parecer no me funciona, este es el codigo:
Código PHP:
<?
if ($go) {
//--- arreglamos el avatar ---//
$imagen = GetImageSize($avatar);
$maxsize == 50; //tamaño maximo dl avatar
if ($imagen[0] <= $maxsize) {
$avatarvalido = "si"; }
else { $avatarvalido = "no"; }
//--- si el avatar es valido ---//
if ($avatarvalido == "si") { echo "<img src=$avatar> el avatar es valido jeje"; exit; }
elseif ($avatarvalido == "no") { echo "<img src=$avatar> el avatar no es valido :'("; exit; }
else { echo "<meta http-equiv=\"REFRESH\" content=\"1; url=prueba.php\"> $imagen[0]"; exit; }
}
?>
<html>
<head>
<title>prueba</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td><div align="center"><form action="<?=$PHP_SELF?>" method="post">
<p>
<input name="avatar" type="text" value="http://">
</p>
<p>
<input type="submit" name="go" value="Submit">
</p>
</form></div></td>
</tr>
</table>
</body>
</html>