ya pude agregar a la tabla los check a hora como los ligo a cada registro y una ves activado el chek los quiero enviar a una tabla
aqui pongo el codigo
<?php
$conexion = mysql_connect('localhost', 'root', '');
mysql_select_db('listadeprecios');
?>
<html>
<head>
<title>Busqueda de Materiales</title>
</head>
<body>
<h2>Busca un material
<br>
por el criterio de descripción</h2>
<form name="form1" method="post" action="buscarmaterial.php">
<label>Buscar:
<input type="text" name="txtBusqueda" id="txtBusqueda">
<input name="textfamilia" type="text" id="textfamilia">
</label>
<input type="submit" name="cmdBuscar" id="cmdBuscar" value="Buscar">
</form>
<table border="1">
<tr>
<td><div align="center"><strong>ID </strong></div></td>
<div align="center"><strong><b></strong>
</div>
<td><div align="center"><strong>Descripción</strong></div></td><div align="center"><strong><b></strong></div>
<td><div align="center"><strong>Precio</strong></div></td>
<td><div align="center"><strong>Fecha</strong></div></td>
<td><div align="center"><strong>Proveedor</strong></div></td>
<td><div align="center"><strong>Contacto</strong></div></td>
<td><div align="center"><strong>Familia</strong></div></td>
<td><div align="center"><strong>Para Cotizar</strong></div></td>
</tr>
<?php
$cont=1 ;
if (isset($_POST['txtBusqueda'])) {
$tabla = mysql_query("SELECT * FROM precios where descripcion like '%" . $_POST['txtBusqueda'] . "%' AND familia like '%" . $_POST['textfamilia'] . "%' ORDER BY FECHA ");
} else {
$tabla = mysql_query('SELECT * FROM precios');
}
while ($registro = mysql_fetch_array($tabla)) {
echo $registrofamilia['nombre'];
$cont=$cont+1 ;
?>
<tr>
<td><?php echo $registro['id']; ?></td>
<td><?php echo $registro['descripcion']; ?></td>
<td><?php echo $registro['pecio']." \$"; ?></td>
<td><?php echo $registro['fecha']; ?>
<td><?php echo $registro['proveedor']; ?></td>
<td><?php echo $registro['contacto']; ?></td>
<td><?php echo $registro['familia']; ?></td>
<td> <form name="form3" method="post" action="">
<input type="checkbox" name="check" value="id">
</form></td>
</tr>
<?php
}
mysql_free_result($tabla);
mysql_close($conexion);
?>
<? echo $check ; ?>
<? echo $cont-1 . " Conicidencias usando la palabra :" . $_POST['txtBusqueda']. " De la Familia: " . $_POST['textfamilia']; ?>
</table>
<form name="form2" method="post" action="">
</form>
</body>
</html>
[/PHP]