I currently have a functioning table displaying on my website using the following query/table display. I need to modify how the table is displayed so I can make the final column a link based on their CompanyID I call in the query.
Query (sanitized for security):
$tableResults = dbQuery('SELECT CompanyName, ContractStatus, LEFT(ContractDate, 10), CCNumber, LevelName, cinfo.CompanyID
FROM <databases> WHERE <things>
order by CompanyName');
while($tableRow = mysql_fetch_assoc($tableResults))
{
$tableData[] = $tableRow;
}
$tableColNames = array_keys(reset($tableData));
And the table (ignore the formatting, the data structure is my concern):
<table width="100%" border="0" cellspacing="1" cellpadding="5" class="tablesorter" id="contcomm_table">
<thead>
<tr>
<th class="header"><strong>Company Name</strong></th>
<th class="header"><strong>Contract Status</strong></th>
<th class="header"><strong>Contract Date</strong></th>
<th class="header"><strong>Writing Number</strong></th>
<th class="header"><strong>View Comm Schedule</strong></th>
</tr>
</thead>
<tbody>
<?
foreach($tableData as $row)
{
echo "<tr>";
foreach($tableColNames as $colName)
{
echo "<td>" . $row[$colName] . "</td>";
}
echo "</tr>";
}
?>
</tbody>
</table>
The link in question would be '/_Document.pdf'. I think I'm having a case of the Mondays, because I just can't grasp this right now.
EDIT: The answers so far have gotten me closer, and now I just need to get over the last hump. I have everything displaying right, and the URL will show up... but now I need to concatenate the URL with the Company ID in the URL.
So, the relevant area I'm working on now, along with my best efforts at it:
if ($colName=='LevelName') {
echo "<td><a href='http://my.url.here/".$CompanyID."_Document.pdf' target='_blank'>" . $row[$colName] . "</a></td>";
}
else {
echo "<td>" . $row[$colName] . "</td>";
}