I am a new developer.
I am making a website and it will contain a lot of pages, more likely 100 or more. In all those pages I have inserted HTML tables.
Now how can I update all table content at once? Without editing hundreds of pages?
I have inserted links into the table but I need to update the links in all pages. this is the table I inserted in all pages.
<table>
<tr><th>Recomended</th></tr>
<tr><td><a href="http://example.com" target="_blank">example</a></td></tr>
<tr><td><a href="http://example.com" target="_blank">example</a></td></tr>
<tr><td><a href="http://example.com" target="_blank">example</a></td></tr>
<tr><td><a href="http://example.com" target="_blank">example</a></td></tr>
<tr><td><a href="http://example.com" target="_blank">example</a></td></tr>
<tr><td><a href="http://example.com" target="_blank">example</a></td></tr>
<tr><td><a href="http://example.com" target="_blank">example</a></td></tr>
<tr><td><a href="http://example.com" target="_blank">example</a></td></tr>
<tr><td><a href="http://example.com" target="_blank">example</a></td></tr>
<tr><td><a href="http://example.com" target="_blank">example</a></td></tr>
<tr><td><a href="http://example.com" target="_blank">example</a></td></tr>
<tr><td><a href="http://example.com" target="_blank">example</a></td></tr>
<tr><td><a href="http://example.com" target="_blank">example</a></td></tr>
<tr><td><a href="http://example.com" target="_blank">example</a></td></tr>
</table>
How can I update example.com?