I am trying to get a file that looks like this:
Name1
Name2
Name3
and want it to output like so:
Name1, Name2, Name3
I tried this but am getting nowhere with it:
$list = file_get_contents("tready.txt");
$convert = explode("\n", $list);
for ($i=0;$i<count($convert);$i++)
{
$list = $convert[$i].', '; //write value by index
}
$this->say('Currently waiting: ' . $list);
}