El problema viene cuando deseo saber que cursos selecciono, porque puede seleccionar + de 1 ¿? alguien tiene una Idea, ayuda Please
Código PHP:
<html>
<head>
<title> Selecion de SEDES para Curso </title>
</head>
<body>
<br>
<h1> Seleccion de Sedes Para el Curso </h1>
<BR><BR>
<?php
include("lib_functions.php");
Connect("localhost","root","admin","pruebas");
$Consulta = Query("centrostrabajoautorizados","CLAVECCT,NOMBRECT,MUNICIPIO,NOMBREMUN","ORDER BY MUNICIPIO");
// **** Impresion de la Tabla de Resultados ****
echo '<table border="1">';
echo '<tr>';
echo '<th> SEDE</th>';
echo '<th> CLAVE CENTRO TRABAJO </th>';
echo '<th> NOMBRE CENTRO TRABAJO </th>';
echo '<th> MUNICIPIO </th>';
echo '</tr>';
//echo '<tr>'; //No. de Sedes, que se especifico en la pagina anterior
while($array = mysql_fetch_array($Consulta)){
echo '<tr>';
echo '<td><input type="checkbox" name="esSEDE" value="esSEDE" align="baseline"></td>';
echo '<td align="center"> '. $data[0][] = $array[0] .'</td>';
echo '<td align="justify"> '. $data[1][] = $array[1] .' </td>';
//echo '<td> '. $data[2][] = $array[2] .' </td>';
echo '<td align="center"> '. $data[3][] = $array[3] .' </td>';
echo '</tr>';
}
echo '</table>';
// ********
?>
</body>
</html>
AYUDA!!! Please