ingreso_giro.php
Cita:
en buscar_rec_ins.php:<form name="form1" method="post" action="">
Nro de Identida: <input name="dni" type="text" size="10" maxlength="10">
<a href="#" onclick="window.open('buscar_rec_ins.php','ventana 1','height=400,width=500,resizable=yes,scrollbars= yes')";>buscar Nombre </a>
</form>
Nro de Identida: <input name="dni" type="text" size="10" maxlength="10">
<a href="#" onclick="window.open('buscar_rec_ins.php','ventana 1','height=400,width=500,resizable=yes,scrollbars= yes')";>buscar Nombre </a>
</form>
Cita:
el problema es que no puedo pasar esos datos de mi busqueda a la pagina ingreso_giro.php no se que prob tenga en m script alguna idea?<?php
include('conexionmacro.php');
$link=Conectarse();
if ($buscar=="")
{
$RsItemUsu = mysql_query("select * from clientes where pais='333l'",$link);
}
elseif ($tipo=="peru")
{ $RsItemUsu = mysql_query("select id_cliente,apepat,apemat,nombres from clientes where pais='$tipo' and apepat like '%$buscar%'",$link);
}
else
{ $RsItemUsu = mysql_query("select id_cliente,apepat,apemat,nombres from clientes where pais='$tipo' and apepat like '%$buscar%'",$link);
}
?>
<html>
<head>
<script>
function ponPrefijo(pref){
window.opener.parent.frames['contentFrame'].form1.dni.value = pref;
//opener.document.form1.cod1.value=pref;
window.close()
}
</script>
<body>
<form name="form1" method="post" action="">
Tipo de Persona <input name="tipo" type="radio" value="P" checked>
Perú <input name="tipo" type="radio" value="V">
Venezuela
Datos: <input name="buscar" type="text" id="buscar" size="30">
<input type="submit" name="Submit" value="Enviar">
</form>
<table><tr>
<td>Codigo</td>
<td>Datos</td>
<td>Seleccionar</td>
</tr>
<?php
while ($Fila = mysql_fetch_row($RsItemUsu))
{
?>
<tr>
<td><?php echo $Fila[0];?></td>
<td><?php
if ($tipo=="Natural")
{ echo $Fila[1].' '.$Fila[2]; }
else
{ echo $Fila[1]; }
?>
</td>
<a href="#" onclick="ponPrefijo('<? echo $Fila[0];?>')"><?=$Fila[0]?></a>
<?php
}
?>
</body>
</html>
include('conexionmacro.php');
$link=Conectarse();
if ($buscar=="")
{
$RsItemUsu = mysql_query("select * from clientes where pais='333l'",$link);
}
elseif ($tipo=="peru")
{ $RsItemUsu = mysql_query("select id_cliente,apepat,apemat,nombres from clientes where pais='$tipo' and apepat like '%$buscar%'",$link);
}
else
{ $RsItemUsu = mysql_query("select id_cliente,apepat,apemat,nombres from clientes where pais='$tipo' and apepat like '%$buscar%'",$link);
}
?>
<html>
<head>
<script>
function ponPrefijo(pref){
window.opener.parent.frames['contentFrame'].form1.dni.value = pref;
//opener.document.form1.cod1.value=pref;
window.close()
}
</script>
<body>
<form name="form1" method="post" action="">
Tipo de Persona <input name="tipo" type="radio" value="P" checked>
Perú <input name="tipo" type="radio" value="V">
Venezuela
Datos: <input name="buscar" type="text" id="buscar" size="30">
<input type="submit" name="Submit" value="Enviar">
</form>
<table><tr>
<td>Codigo</td>
<td>Datos</td>
<td>Seleccionar</td>
</tr>
<?php
while ($Fila = mysql_fetch_row($RsItemUsu))
{
?>
<tr>
<td><?php echo $Fila[0];?></td>
<td><?php
if ($tipo=="Natural")
{ echo $Fila[1].' '.$Fila[2]; }
else
{ echo $Fila[1]; }
?>
</td>
<a href="#" onclick="ponPrefijo('<? echo $Fila[0];?>')"><?=$Fila[0]?></a>
<?php
}
?>
</body>
</html>
me sale "error de pagina".