For the ICAO problem, change: 
 
<?php echo $schedule->depicao;?>
 
to 
 
<?php echo $schedule->depname;?>
 
You can combine them so it's ICAO - Airport Name by doing: 
 
<?php echo $schedule->depicao.' - '.$schedule->depname;?>
 
Same applies for arricao. 
For the schedule frequency: 
 
<?php
	// We are gonna loop each day of the week
	for($dayofweek = 0; $dayofweek < 7; $dayofweek++)
	{
			// echo our column opening
			echo '<td  class="center">';
			// Check if $i (the current day of week) exists
			if(substr_count($route->daysofweek, $dayofweek) > 0)
			{
					// there is a flight for sunday , so echo that plane icon out
			echo '<img src="IMAGE URL GOES HERE" />';
			}
			// Close that column
			echo '</td>';
	}
?>