My issue is that the dropdown is actually populating correctly but with only the first letter of that particular line.
I have the following in my file:
Monday
Tuesday
Wed
It is displaying as:
M
T
W
Any ideas?
My code:
<select id="playlist_wrongstyle" class="form-control" style="visibility:visible; width:250px;">
<option selected="selected">Choose one</option>
<?php
$returnedScheduleNamesArray = explode ("\n", file_get_contents('/srv/http/schedulenames'));
array_pop($returnedScheduleNamesArray); //remove empty last line
foreach($returnedScheduleNamesArray as $name)
{
?>
<option value="<?=$name['name']?>"><?=$name['name']?></option>
<?php
}
?>
</select>
<?= $name ?>$nameis a string?