Let's say that I have a table that looks like this:
<table>
<tr>
<td>UTC+1</td>
<td>10:00</td>
<td>12:00</td>
<td>18:00</td>
<td>23:00</td>
</tr>
<tr>
<td>Monday</td>
<td>A</td>
<td>B</td>
<td>C</td>
<td>D</td>
</tr>
<tr>
<td>Tuesday</td>
<td>D</td>
<td>C</td>
<td>B</td>
<td>A</td>
</tr>
<tr>
<td>Wednesday</td>
<td>E</td>
<td>F</td>
<td>G</td>
<td>H</td>
</tr>
</table>
The table is for UTC+1. Let's also say that I want to add a feature that allows me to see the table in my local time zone, for example UTC+8. That would obviously change the table completely. Could someone point me in the right direction and explain how I could achieve this? I guess I could solve this with 24 different tables, one table per time zone, but that's not optimal when needed to update something and if I have more than one table.