Sobre array
Tengo que mostrar la mayor nota y lo que tengo es esto:
<?php
$ayudante=fopen("datos.txt","r");
echo "
<table border>
";
echo "
<tr>
<td><b>Estudiante</b>
<td><b>Nota Final</b>";
while(!feof($ayudante)){
$nombre=fgets($ayudante);
$nota=fgets($ayudante);
$b=round($nota,1);
if($nombre!=""){
echo "
<tr>
<td>$nombre
<td>$b";
}
}
echo "
</table>
";
fclose($ayudante);
?>
<?php
$c=array(0,0,0,0,0);
foreach($b as $valor){
$c[$valor-1]++;
}
$po=0;
$ma=0;
$total=5;
$i=0;
for($i<$total){
i++;
if($c[$i]>$ma){
$ma=$c[$i];
$po=$i;
echo $ma;
}
}
?>
<?php
$ayudante=fopen("datos.txt","r");
echo "
<table border>
";
echo "
<tr>
<td><b>Estudiante</b>
<td><b>Nota Final</b>";
while(!feof($ayudante)){
$nombre=fgets($ayudante);
$nota=fgets($ayudante);
$b=round($nota,1);
if($nombre!=""){
echo "
<tr>
<td>$nombre
<td>$b";
}
}
echo "
</table>
";
fclose($ayudante);
?>
<?php
$c=array(0,0,0,0,0);
foreach($b as $valor){
$c[$valor-1]++;
}
$po=0;
$ma=0;
$total=5;
$i=0;
for($i<$total){
i++;
if($c[$i]>$ma){
$ma=$c[$i];
$po=$i;
echo $ma;
}
}
?>
1 Respuesta
Respuesta de davidcortesb
1