0

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?

dakab
  • 5,379
  • 9
  • 43
  • 67

2 Answers2

0

First You should learn about a web programming language ( PHP for example ) instead of writing static HTML pages.

Second to make your site available thought the internet you will need to buy a hosting and domain name. Or start with a free service

webNeat
  • 2,768
  • 1
  • 20
  • 22
0

create one table.html file put your table in this htmlfile use jquery.js use jquery load function

$('#div1').load('table.html', function() {

       //callback
});

update only at once.

Pranay Soni
  • 1,056
  • 10
  • 18