Código PHP:
<?php
include("conexion_db.php");
$result = mysql_query("SELECT * FROM notas_t_pensamiento WHERE id_estudiante = '$id_estudiante' ORDER BY id DESC LIMIT 10");
while ($row = mysql_fetch_array($result))
{
//Datos Alumno
$nota = $row["nota"];
}
echo "
<tr bgcolor=\"#FFFFFF\">
<td width=\"35\" height=\"21\"><div align=\"center\">
$nota
</div></td>
</tr>
";
?>
Muchas gracias y saludos...