Comunidad de diseño web y desarrollo en internet online

pasar variable de url por formulario en php

Citar            
MensajeEscrito el 21 Ene 2011 09:25 pm
Ayuda por favor!!!!

Primero: envio un link por correo con variables en el link, ejemplo:

www.miweb.com/index.php?variable=lima

Segundo: el cliente al entrar a ese link se encuentra un formulario con solo 2 campos de texto: nombre y dni

Tercero: el cliente al rellenar esos dos datos y apretar el boton submit del formulario necesito que envie las variables nombre, dni y lima

Alguien sabe como pasar una variable de url por el formulario?

link: www.miweb.com/index.php?variable=lima

index.php

<form action="datos.php" method="post">
<h4>Ingrese sus datos</h4><br>
nombre:<br>
<input type="text" name="nombre"><br>
dni:<br>
<input type="text" name="dni"><br>
<input type="submit">
</form>

---------------------------------

datos.php

<?php
$lima =$_POST["lima"];
$nombre =$_POST["nombre"];
$dni =$_POST["dni"];
$_SERVER["REMOTE_ADDR"];

--------------------------------------------

Como pueden ver el problema es en pasar la variable de la url en este caso lima de index.php a datos.php por fa ayudenmeeeee

Por CLAnonimo

Claber

600 de clabLevel

5 tutoriales
1 articulo

 

Este es un usuario anónimo genérico para las cuentas borradas o perdidas.

firefox
Citar            
MensajeEscrito el 21 Ene 2011 11:00 pm
yo lo haría así :) de este modo no ocupas otro archivo, asi solo harías algo asi: "http://direccion/?var=lima"

Código PHP :

<?
if (isset($_POST['submit'])) {
      echo $_POST['nombre'];
      echo $_POST['dni'];
      echo $_POST['lugar'];
   }
else{
?>
<form action="index.php" method="post">
<h4>Ingrese sus datos</h4><br>
nombre:<br><input type="text" name="nombre"><br>
dni:<br><input type="text" name="dni"><br>
<input type="hidden" name="lugar" value="<? echo $_GET['var'] ?>" />
<input type="submit" name="submit">
</form>
<? } ?>


suerte

Por tribak

Claber

2448 de clabLevel

6 tutoriales

Genero:Masculino   Héroes

Fotógrafo o algo

firefox

 

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