I have an issue that I can't seem to solve, without breaking the entire page.
I need to edit this following code and insert extra echo statements. The echo statements are needed in order to markup with RDFa Lite.
echo '<td><a href="sportsteam.php?id='.$row['SportsTeam_id'].'">'.$row['name'].'?></a></td>
<td>'.$row['startDate'].'</td>
<td>'.$row['endDate'].'</td>
</tr>';
I need to insert the echo statements before and after $row['name'], $row['startDate'] and $row['endDate'].
Better add it to a variable and concatenate with '.'