hyperlink - the best way to "link" two web pages -
I was planning to create two web pages (separate domains) that deal with the same subject. Articles will be published on the first page and I would like to show those articles on other pages (here only the example of the last 10 articles will be displayed here).
Edit: I use php / mysql
Should be stored in a database that is available from both pages (are they the same webserver?)
Then on one page you can:
select title Summary from the article DESC
and on the other:
SELECT title, full text by article DESC LIMIT 10
You can serve both web pages with the same webserver Even though the domain name vary.
Comments
Post a Comment