Cita:
Iniciado por natashca
Código PHP:
<a href=traspasoURL.php?CORRELATIVO=".$_GET['CORRELATIVO']."&RUT=".$_GET['RUT']."&DV=".$_GET['DV']."";</a>
Si está mal, primero que nada, recoges los datos desde la URL?
Si es así si necesitas el $_GET[''], si no como variables "normales".
Código PHP:
echo "<a href=traspasoURL.php?CORRELATIVO=".$_GET['CORRELATIVO']."&RUT=".$_GET['RUT']."&DV=".$_GET['DV']."</a>";
Código:
/* o Así */
<a href=traspasoURL.php?CORRELATIVO=<?=$_GET['CORRELATIVO']?>&RUT=<?=$_GET['RUT']?>&DV=<?=$_GET['DV']?>TU enlace</a>