Código HTML:
<HTML> <HEAD> <TITLE>Consulta..</TITLE> <script language="JavaScript"> function estado(){ if(document.frm.chk[].cheked) alert("Marcado"); else alert("Desmarcado"); } </script> </HEAD> <BODY> <td aling ="center" width='200'> PRODUCTOS </b><br><br><br></td> <td align="rigth" width="250"> <table border="1" summary="Simple table example with header cells."> <tr> <th><b>Cve. Articulo</b></th> <th><b>Disco</b></th> <th><b>Precio ($)</b></th> <th><b>Boton($)</b></th> </tr> <form name="frm" onclick="estado()"> <?php include("libreria.php"); //Conectando a la base de datos $link=Conectarse(); //Haciendo la consulta para llenar la tabla $v1="Select cve_art, nom_art, prec_venta FROM articulo ORDER BY nom_art"; $result=mysql_query($v1) or die ("error"); $i=0; while($rs=mysql_fetch_array($result)) { echo "<tr valign='middle'>"; echo "<td class='tabval'>".($rs['cve_art'])." </td>"; echo "<td class='tabval'>".($rs['nom_art'])." </td>"; echo "<td class='tabval'>".$rs['prec_venta']." </td>"; echo "<td class='tabval'>".'<input type="checkbox" name="chk[]" value="$rs[$i]" />'." </td>"; echo "</tr>"; $i=$i+1; } mysql_close($link); //cierra la conexion ?> </form> </TABLE> </td> </body> </html>