1ro la recibes en
index.php por GET:
Código PHP:
Ver original<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="hidden" name="variable" value="<?php echo $_GET['variable'] ?>">
<input type="submit">
</form>
y en
datos.php por POST(ya que es el método por el que envías en tu formulario)
Código PHP:
Ver original<?php
$lima =$_POST["variable"];
$nombre =$_POST["nombre"];
$dni =$_POST["dni"];
$_SERVER["REMOTE_ADDR"];