Código PHP:
<?php
if(isset($_GET["nombre"]))
{ $nombre = $_GET["nombre"]; }
else
{ $nombre = ""; }
if(isset($_GET["rut"]))
{ $rut = $_GET["rut"]; }
else
{ $rut = ""; }
if(isset($_GET["direccion"]))
{ $direccion = $_GET["direccion"]; }
else
{ $direccion = ""; }
if(isset($_GET["ciudad"]))
{ $ciudad = $_GET["ciudad"]; }
else
{ $ciudad = ""; }
if(isset($_GET["telefono"]))
{ $telefono = $_GET["telefono"]; }
else
{ $telefono = ""; }
if(isset($_GET["mail"]))
{ $mail = $_GET["mail"]; }
else
{ $mail = ""; }
if(isset($_GET["transporte"]))
{ $transporte = $_GET["transporte"]; }
else
{ $transporte = ""; }
?>