|    
			
				07/04/2006, 02:08
			
			
			  | 
  |   |  |  |  Fecha de Ingreso: marzo-2006 
						Mensajes: 3
					 Antigüedad: 19 años, 7 meses Puntos: 0 |  | 
  |  ok , pego el codigo:
 archivo inicial formulario A
 
 <html>
 <head>
 <title>Formulario A</title>
 </head>
 <script language="javascript" src="lib.js"></script>
 <body onload='opcionDatos(2);'>
 
 <p></p>
 
 <form name=formA method=post action=formB.php>
 
 <table border=0 width=100%>
 ............
 .....etc
 
 
 PQ <input type=checkbox name=check2>
 </td></tr>
 <tr><td align=left>
 OP <input type=checkbox name=check1>
 </td>
 <td align=right>
 QR <input type=checkbox name=check3>
 ..........
 .......etc.
 
 
 
 archivo intermedio  _lib.inc
 
 ........
 if ($check1 == "on") $fOP = 1;
 if ($check2 == "on") $fPQ = 1;
 if ($check3 == "on") $fQR = 1;
 if ($check4 == "on") $fRO = 1;
 .........
 .........
 
 
 archivo final formulario B
 
 <?php
 
 include("_lib.inc");
 include("_banco.inc");
 
 echo("<pre>"); var_dump($_POST); echo("</pre>");
 
 ?>
 
 <html>
 <head>
 <title>Formulario B1</title>
 </head>
 <script language="javascript" src="lib.js"></script>
 <body>
 
 
 <?php
 
 
 
 
 resultado obtenido del proceso en mi pc en formulario B
 
 almarcar los checks 2 y 4:
 
 array(24) {
 ["check2"]=>
 string(2) "on"
 ["check4"]=>
 string(2) "on"
 
 
 parece correcto , pero al sacar sus valores correspondientes con echo:
 
 $fPQ =
 
 $fRO =
 
 no los reconoce!!!!!!!!!!!!!!!
 
 franacamente , no entiendo nada y estoy  parado no sé que hacer
     |