Hello,
I need a method that PHP will read a text file. An example of what the file will contain:
none|link
So, when PHP finishes reading the file, it gives an array with the name and the link, for example:
<?php
$conteudo = array('nome' => 'link');
?>
I searched the internet but did not find it.