使用PHP打开某个页面?

时间:2013-07-08 10:17:26

标签: php html5

我有一个包含内容的page-info.php文件:

    <div class="page">
            <a name="info" id="info"></a>
            <p>The content </p>

            <FORM><INPUT Type="button" VALUE="TAGASI" id="tagasi" onClick="history.go(-1);return true;"></FORM>


        </div>

在我的index.php中,我有一个按钮,当它被点击时,它将包含页面上的内容:

<a class="loe-siit" href="./info#info">Tahad rohkem teada?</a>

现在我想添加另一个用英文显示内容的按钮:

我创建了一个名为page-en.php的页面:

    <div class="page">
    <a name="info" id="en"></a>
               <p> Content in english. </p>

<FORM><INPUT Type="button" VALUE="BACK" id="tagasi" onClick="history.go(-1);return true;"></FORM>


    </div>

现在如何让page-en.php中的内容以与page-info.php中的内容相同的方式显示?

测试网站:http://www.kogumelugu.ee/testing/

1 个答案:

答案 0 :(得分:0)

您可以使用参数

创建链接以打开index.php
<a href="index.php?page=content_en">English</a>

在内容部分中根据您发送的参数加载文件:

<?php
if($_GET['page']=='content_en') {
    include('page-en.php');
}
?>