对于一般的编码很抱歉,我想创建一个非常基本的网站,它将有一个顶部横幅和一个导航栏以及一个用于保存信息的栏下方的桌子。我希望导航栏链接加载到表中而不需要单独的文件。所以我所拥有的是一个由此组成的index.php。
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>BHSC TORONTO</title>
</head>
<body bgcolor="#000000">
<?php include ('banner.php'); ?>
<?php include ('navbar.php'); ?>
<br />
<center>
<table width="800" border="0">
<tr>
<td align="right"> </td>
</tr>
<tr>
<td>All information would go here when link is clicked.</td>
</tr>
</table>
</center>
<br />
<center><iframe width="900" height="166" scrolling="no" frameborder="no" src="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/144156578&color=ff5500&auto_play=false&hide_related=false&show_artwork=true"></iframe></center>
</body>
</html>
我想要的是链接将页面加载到表index.php而不是链接到需要完全设计的单独页面。对不起,我环顾四周,但无法找到这些确切的信息。谷歌搜索和你也...我可能会寻找错误的术语。再次非常新的PHP。
答案 0 :(得分:0)
让你有两页home.php和another.php
你的导航栏链接应该是这样的
<a href="index.php?pg=1">Home</a>
<a href="index.php?pg=2">Another</a>
然后在你的index.php
中<td> <?php
if($_REQUEST['pg']==1)
include('home.php');
elseif($_REQUEST['pg']==2)
include('another.php');
?> </td>
该设置