Ver Mensaje Individual
  #1 (permalink)  
Antiguo 16/12/2009, 18:30
0zK4Rr
 
Fecha de Ingreso: abril-2005
Mensajes: 45
Antigüedad: 19 años, 11 meses
Puntos: 1
Problema con $_GET

Buenas, tengo una consulta, un simple script que recibe un valor con GET. Funciona normal cuando le paso cualquier valor, pero al pasarle una URL me sale error 403

archivo.php?tit=Holaaaaaaaaaaaaaaaa -> OK
archivo.php?tit=http://www.google.com -> Error 403

Este es mi codigo php

Código PHP:
<?php
$ural
$_GET['tit'];
echo
'
    <!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=iso-8859-1" />
            <title>'
.$ural.'</title>
        </head>
'
;
echo
'
        <body>
        '
.$ural.'
        </body>
    </html>
'
;
?>