Comunidad de diseño web y desarrollo en internet online

problema con redireccion (sintaxis)

Citar            
MensajeEscrito el 16 May 2010 04:56 pm
Hola mi idea es que una persona introduzca una dirección en un cuadro le de al botón redireccionar y le reenvie a la pagina que ha escrito.

El problema es que al subirlo a mi servidor me da error en el segundo código, me pone esto: syntax error, unexpected T_STRING on line 11

ESTO EN HTML Y MEDIANTE EL MÉTODO POST LO ENVÍA A EL SIGUIENTE CÓDIGO


Código HTML :

<!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>Documento sin t&iacute;tulo</title> 
</head> 

<body> 
<form action="Untitled-9.php" method="post" id=”formulario”> 
Link: <input type="text" name="link" id="link" /> 
<input type="submit" value="Redirigir" name="Redirigir" id="Redirigir" /> 
</body> 
</html>  





Aquí es donde me da el fallo, lo que quiero es que mediante el método post me redireccione a la página que ha escrito el usuario

Código PHP :

<!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>Documento sin t&iacute;tulo</title> 
</head> 

<body> 
<?  
$_GET['link']= "$link" 
header(localitation: $link);  

  
exit;   
?>  


</body> 
</html> 




¿Donde está el fallo?

Por danibonilla1

0 de clabLevel



 

ES

msie8
Citar            
MensajeEscrito el 16 May 2010 06:08 pm
Tu problema es que el estas enviando mediante metodo post, y en el php le dices que reciba mediante get

Código :

<?  $_GET['link']= "$link" header(localitation: $link);    exit;    ?>


Revisa eso
Suerte =)

Por D@rB

38 de clabLevel



Genero:Masculino  

GDL Mx

chrome
Citar            
MensajeEscrito el 16 May 2010 08:22 pm
Tu script Untitled-9.php debería ser nada más que esto:

Código PHP :

$lnk = $_POST['link'];
header("Location: $link");


El resto es irrelevante y casará error.

Por DriverOp

Claber

2510 de clabLevel



 

opera

 

Cristalab BabyBlue v4 + V4 © 2011 Cristalab
Powered by ClabEngines v4, HTML5, love and ponies.