Added title headings to tables

pull/150/head
Corby Krick 2013-11-09 14:14:08 -06:00
rodzic fd7557a4c0
commit a07e59dbc0
2 zmienionych plików z 8 dodań i 1 usunięć

Wyświetl plik

@ -33,7 +33,7 @@ class eqsl extends CI_Controller {
if (count($records) > 0)
{
$table = "<table>";
$table .= "<tr>";
$table .= "<tr class=\"titles\">";
$table .= "<td>Date</td>";
$table .= "<td>Call</td>";
$table .= "<td>Mode</td>";

Wyświetl plik

@ -29,6 +29,13 @@ class Lotw extends CI_Controller {
$this->adif_parser->initialize();
$table = "<table>";
$table .= "<tr class=\"titles\">";
$table .= "<td>Date</td>";
$table .= "<td>Call</td>";
$table .= "<td>Mode</td>";
$table .= "<td>Log Status</td>";
$table .= "<td>LoTW Status</td>";
$table .= "<tr>";
while($record = $this->adif_parser->get_record())
{