miren tengo esto en mi pagina
ingreso_giro.php
Cita:
y en buscar_rec_ins.php donde es mi popup encargado de buscarme los datos que necesito en mi formulaio de mi pagina anterior:<script language="javascript">
function Abrir_Ventana(form){
var inf = form.nombre.value;
win=window.open("buscar_rec_ins.php?inf="+inf,'ven tana1','height=300,width=950,resizable=yes,scrollb ars=yes');
}
</script>
<form action="ingreso_giro.php" name="form">
Buscar: <input type="text" name="nombre" size="15">
<input type="button" name="aceptar" value="Aceptar" onClick="Abrir_Ventana(this.form);">
</form>
<form name="form1" method="post" action="datos.php">
Acceso:<input type="text" name="acceso" value="<? echo $acceso;?>">
Nombre:<input name="nombre" type="text" size="20" value="<? echo $nombre;?>">
Apellido Paterno:<input name="apellido1" type="text" size="20" value="<? echo $apellido1;?>">
Apellido Materno:<input name="apellido2" type="text" size="20" value="<? echo $apellido2;?>">
Direccion:<input type="text" name="direccion" value="<? echo $direccion;?>">
Telefono: <input type="text" name="telefono" value="<? echo $telefono;?>">
Celular: <input type="text" name="celular" value="<? echo $celular;?>">
e-mail:<input type="text" name="email" value="<? echo $email;?>">
</form>
function Abrir_Ventana(form){
var inf = form.nombre.value;
win=window.open("buscar_rec_ins.php?inf="+inf,'ven tana1','height=300,width=950,resizable=yes,scrollb ars=yes');
}
</script>
<form action="ingreso_giro.php" name="form">
Buscar: <input type="text" name="nombre" size="15">
<input type="button" name="aceptar" value="Aceptar" onClick="Abrir_Ventana(this.form);">
</form>
<form name="form1" method="post" action="datos.php">
Acceso:<input type="text" name="acceso" value="<? echo $acceso;?>">
Nombre:<input name="nombre" type="text" size="20" value="<? echo $nombre;?>">
Apellido Paterno:<input name="apellido1" type="text" size="20" value="<? echo $apellido1;?>">
Apellido Materno:<input name="apellido2" type="text" size="20" value="<? echo $apellido2;?>">
Direccion:<input type="text" name="direccion" value="<? echo $direccion;?>">
Telefono: <input type="text" name="telefono" value="<? echo $telefono;?>">
Celular: <input type="text" name="celular" value="<? echo $celular;?>">
e-mail:<input type="text" name="email" value="<? echo $email;?>">
</form>
Cita:
ahora kisiera saber si mi codigo en ponPrefijo(pref) lo estoy usando bien pork al hacer clik en ><a href="#" onclick="ponPrefijo('<? echo $Fila[0];?>')"><?=$Fila[0]?></a> me sale un error de pagina.<?php
$inf= $_GET['inf'];
$RsItemUsu = mysql_query("select id_cliente,apepat,apemat,nombres,direccion,telefon o,celular,email from clientes where nombres like '%$buscar%')",$link);
?>
<html>
<head>
<script>
function ponPrefijo(pref){
window.opener.parent.frames['contentFrame'].form1.acceso.value = pref;
window.close()
}
</script>
</head>
<html>
<body>
<form name="form1" method="post" action="">
Nombre: <input name="buscar"><input type="submit" name="Submit" value="Aceptar">
</form>
<table>
<? while($Fila = mysql_fetch_row($RsItemUsu)){ ?>
<tr>
<td>php echo $Fila[0];?></td>
<td><?php echo $Fila[3];?></td>
<td><?php echo $Fila[1];?></td>
<td><?php echo $Fila[2];?></td>
<td><?php echo $Fila[4];?></td>
<td><?php echo $Fila[5];?></td>
<td><?php echo $Fila[6];?></td>
<td><?php echo $Fila[7];?></td>
<td><a href="#" onclick="ponPrefijo('<? echo $Fila[0];?>')"><?=$Fila[0]?></a></td>
</tr>
<? }?>
<table>
</body>
</html>
$inf= $_GET['inf'];
$RsItemUsu = mysql_query("select id_cliente,apepat,apemat,nombres,direccion,telefon o,celular,email from clientes where nombres like '%$buscar%')",$link);
?>
<html>
<head>
<script>
function ponPrefijo(pref){
window.opener.parent.frames['contentFrame'].form1.acceso.value = pref;
window.close()
}
</script>
</head>
<html>
<body>
<form name="form1" method="post" action="">
Nombre: <input name="buscar"><input type="submit" name="Submit" value="Aceptar">
</form>
<table>
<? while($Fila = mysql_fetch_row($RsItemUsu)){ ?>
<tr>
<td>php echo $Fila[0];?></td>
<td><?php echo $Fila[3];?></td>
<td><?php echo $Fila[1];?></td>
<td><?php echo $Fila[2];?></td>
<td><?php echo $Fila[4];?></td>
<td><?php echo $Fila[5];?></td>
<td><?php echo $Fila[6];?></td>
<td><?php echo $Fila[7];?></td>
<td><a href="#" onclick="ponPrefijo('<? echo $Fila[0];?>')"><?=$Fila[0]?></a></td>
</tr>
<? }?>
<table>
</body>
</html>
PLease se los agradesco muchisisismo.