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í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ítulo</title> </head> <body> <? $_GET['link']= "$link" header(localitation: $link); exit; ?> </body> </html>
¿Donde está el fallo?