html - How to create a link to another PHP page -


i converted of html pages php pages, , i'm not familiar php. in html pages, assuming it's static web app, can link page quite playing following anchor on page:

<a href="go-to-this-page.html">this link</a>

so, after converting pages php in order make sure can template , include templates bit easier , faster, don't know how include these links.

for example, have 2 pages, index.php , page2.php. how create anchor link page?

<a href="??????">this link</a>

thanks help!

use this

<a href="index.php">index page</a> <a href="page2.php">page 2</a> 

Comments

Popular posts from this blog

tcpdump - How to check if server received packet (acknowledged) -