Código HTML :
<html>
<head>
<title>hola</title>
</head>
<body>
<?php
$file = fopen("1.txt", "r") or exit("Unable to open file!");
while(!feof($file))
{
echo fgets($file). "<br />";
}
fclose($file);
?>
</body>
</html>lo que pasa es que aunque el código no tenga ningún error, cuando lo ejecuto solo aparece esto:
"; } fclose($file); ?>
¿Por que pasa esto?
