![U_U](http://static.forosdelweb.com/fdwtheme/images/smilies/nods.png)
Lo que quiero es que cuando escribas en las cajas de texto calle, colonia, etc esto lo que deveria hacer el mandar los valores por GET de lo que puse en las cajas
crerme una url algo asi
ver.php?calle=AAAA&colonia=BBB&ciudad=CCCC para que la muestre el iframe
pero no se como hacer esto que al momento de escrivir se este llenado esa URL
![U_U](http://static.forosdelweb.com/fdwtheme/images/smilies/nods.png)
Código HTML:
Ver original
<!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=utf-8" /> </head> <body> <form action="" method="post" enctype="multipart/form-data" name="form1" id="form1"> Calle <input name="calle" type="text" id="calle" onchange="document.getElementById('iFrame').src='borrar.php' return false" size="32" /> Colonia <input type="text" name="colonia" value="" size="32" onchange="document.getElementById('iFrame').src='borrar.php' return false" /> Municipio <input type="text" name="municipio" value="" size="32" onchange="document.getElementById('iFrame').src='borrar.php' return false" /> Ciudad <input type="text" name="ciudad" value="" size="32" onchange="document.getElementById('iFrame').src='borrar.php' return false" /> Cp <input name="cp" type="text" value="" size="6" maxlength="6" onchange="document.getElementById('iFrame').src='borrar.php' return false" /> <input type="submit" value="Insertar registro" /> </form> <br /> Iframe </body> </html>