vale tengo este coigo con este error:Parse error: syntax error, unexpected T_VARIABLE, expecting ',' or ';' in /home/a3005457/public_html/puntuacion.php on line 9
Código (php) [Seleccionar]
<html>
<head>
<meta charset="utf-8">
</head>
<body>
<?php
function mostrarDatos($resultados) {
if($resulatdos !=NULL){
echo "-Nombre:"$resultados['nombre']"<br/>";
echo "-Empates:"$resultados['empates']"<br/>";
echo "-TU:"$resultados['tu']"<br/>";
echo "-IA:"$resultados['ia']"<br/>";
echo "********************************************<br/>";
} else {
echo "<br/>No hay mas datos<br/>";
}
require("connect_db.php")
$result = mysql_query($link,"SELECT * FROM puntuacion");
while($fila = mysql_fetch_array($result)) {
mostrarDatos($fila);
}
mysqli_free_result($result);
mysqli_close($link);
?>
</body>
</html>