Description
The implementation of the principle is that the page contains a specific page, in your Web page in order to achieve the navigation must be added '? id=pagename ' to display.
The code is as follows:
if ($id = = "Home") {
Include ("yourhomepage.html");
}
ElseIf ($id = = "Page") {
Include ("yourpage.html");
}
If your browser is not connected to the specified page, or if there is an error in the Connection page, the following page appears.
else{
Include ("yourpage.html");
}
?>
http://www.bkjia.com/PHPjc/631411.html www.bkjia.com true http://www.bkjia.com/PHPjc/631411.html techarticle Description: The implementation of the principle is that the page contains a specific page, in your Web page in order to achieve the navigation must be added '? id=pagename ' to display. The code is as follows:? if ($id ==home) {include (Y ...