Código PHP:
<?PHP
include ("conexion.php");
$query= "SELECT * FROM deporte";
$respuesta= mysql_query($query, $conexion);
$array= mysql_fetch_array($respuesta);
echo "<table>";
echo "<tr> ";
echo "<td><form name= 'checkbox' method= 'post'> ";
echo "<input type='checkbox' name='especialidad' values='$array[especialidad]'> '$array[especialidad]'";
echo "</td></form>";
echo "</tr>";
echo "</table>";
?>
en que estoy fallando??...
Bueno muchas gracias de ante mano.
Espero sus respuestas!!