Gracias por sus amables respuestas
Código HTML:
<html> <head> <title>3 notas, de 3 alumnos y sacar promedio</title> </head> <body> <textarea rows="5" name="descripcion" cols="20">Es de color rojo</textarea> <form name="numeros" action="nota11.php" method="POST"> <font color='red'> Ingrese Nombre del Aprendiz: <br><br> <input type="text" name="name"> <br><br> ingrese notas de estudiantes Nota 1<input type="text" name="not1" size="10" maxlength="3"> Nota 2<input type="text" name="not2" size="10" maxlength="3"> Nota 3<input type="text" name="not3" size="10" maxlength="3"> <input type="submit" value="generar"> </form> </body> </html>
Código PHP:
<html>
<head>
<title></title>
</head>
<body>
<center>
<?php
$nom=$_REQUEST['name'];
$n1[0] = $_REQUEST['not1'];
$n2[1] = $_REQUEST['not2'];
$n3[2] = $_REQUEST['not3'];
$a=1;
for($a>=1;$a<4;$a++)
{
$n1=rand(1,5);
$n2=rand(1,5);
$n3=rand(1,5);
echo "Estudiabte $a= $n1,$n2,$n3";
$prom=($n1+$n2+$n3)/3;
echo "<br>Nombre $nom";
echo"¨Promedio igual a $prom";
if($prom>3.5)
{
echo"Aprobado<br><br>";
}
else
{
echo"Reprobado<br><br>";
}
}
?>
</body>
</html>