Home > Article > Backend Development > How to implement php hyperlink to the next php
How to achieve a hyperlink from php to the next php?
Assume your local is 127.0.0.1 and your index.php is under \htdocs\Z_try. That is:
\htdocs\Z_try\index.php
Your other page is also under \htdocs\Z_try
Then your link address is as follows:
<a href="/z_try/ceshi.php">测试<a>
In fact, you only need to understand that all local For the test page, \htdocs\ is equivalent to 127.0.0.1. If there is a folder, it must be accompanied by the path after the htdocs folder
Recommendation: "PHP Tutorial"
The above is the detailed content of How to implement php hyperlink to the next php. For more information, please follow other related articles on the PHP Chinese website!