Hope you have an amazing day. The table will be contain a list of students. I've make a column named Progress Evaluation for the table. In a column for Progress Evaluation for a specific student, there will be several link in it which is why i want to know how to add multiple rows in a specific column. I figured that maybe it will be easier to insert the links by then.
This is the table that I've created. It connect to the database. I have tried rowspan attribute but i don't get the result that i want or maybe i don't fully understand how to use it.
echo '<table align="center">
<tr><th><b>Matric Number</b></th><th><b>Name</b></th><th><b>Programme</b>
</th><th><b>Project Title</b></th><th><b>Progress Evaluation</b></th>
</tr>';
while ($row = mysqli_fetch_array($result, MYSQLI_ASSOC)) {
echo '<tr><td>' . $row['Matric_Number'] . '</td>
<td>' . $row['Name'] . '</td>
<td>' . $row['Programme'] . '</td>
<td>' . $row['Project_Title'] . '</td>
<td><b>mutiple row in here</b></td>
</td></tr>';
So yeah,basically i want each column under the Progress evaluation contains 3 rows. Thank you for your time.