Read value per line
<?php
$data = file_get_contents("input.txt"); //read the file
$convert = explode("\n", $data); //create array separate by new line
for ($i=0;$i<count($convert);$i++)
{
echo $convert[$i].', '; //write value by index
}
?>
Documentación:
http://es1.php.net/manual/es/function.file-get-contents.php
tengo problemas cuando deseo utilizar un if, es decir no me funciona cuando quiero comparar
ResponderEliminar