Cita:
los input text como los mando a un insert presionando el boton submit he visto algunos ejemplos pero no me funcionan alguna idea ...saludos $sqlBusqueda=mysql_query("select * from matricula as ma join alumnos as A where ma.clase='$q' and ma.cuenta=A.cuenta" );
if (mysql_num_rows($sqlBusqueda)<=0)
{
echo ("Usted aun no tiene Alumnos para esta Clase Asignada hable con su Encargado......");
}
else
{
print "<table border='1'>
<tr>
<th bgcolor=\"#999999\">Cuenta</th>
<th bgcolor=\"#999999\">Nombre Alumno</th>
<th bgcolor=\"#999999\">Nota</th>
</tr>";
while($row=mysql_fetch_array($sqlBusqueda)){
$cuenta=$row['cuenta'];
$nombre=$row['nombre'];
$clase=$row['clase'];
print '<tr>
<td><input type="text" name=cuenta[] value="'.$row["cuenta"].'"/></td>
<td ><input type="text" name=nombre[] value="'.$row["nombre"].'"</td>
<td><input type="text" name=nota[] value="" /></td>
</tr>';
}
}
if (mysql_num_rows($sqlBusqueda)<=0)
{
echo ("Usted aun no tiene Alumnos para esta Clase Asignada hable con su Encargado......");
}
else
{
print "<table border='1'>
<tr>
<th bgcolor=\"#999999\">Cuenta</th>
<th bgcolor=\"#999999\">Nombre Alumno</th>
<th bgcolor=\"#999999\">Nota</th>
</tr>";
while($row=mysql_fetch_array($sqlBusqueda)){
$cuenta=$row['cuenta'];
$nombre=$row['nombre'];
$clase=$row['clase'];
print '<tr>
<td><input type="text" name=cuenta[] value="'.$row["cuenta"].'"/></td>
<td ><input type="text" name=nombre[] value="'.$row["nombre"].'"</td>
<td><input type="text" name=nota[] value="" /></td>
</tr>';
}
}