动态生成页面中的动态页面

时间:2016-02-05 23:51:00

标签: php html

所以我已经有了一个主页面,然后是动态页面。但我想知道如何在生成的页面中生成动态页面。例如,www.whatever.com/something.php?q = something?p = something

我想让动态页面包含其他动态页面,以便我可以切换该页面中的内容。

有什么想法吗?

所以这个页面是由www.website.com/folder/main.php?c=page1完成的,在这个div中我想做其他内容

 <div class="col s9 grey right">
    <!-- Teal page content  -->
    <div class="card-panel z-depth-2">
     <div class="row center">
                <div class="col s12">
                    <?php  include 'content.php';?>

                </div><!---panel personal stats---->
            </div><!---profile container row--->
</div>
  </div>

在那个网址中我试图得到这样的东西 www.website.com/folder/main.php?c=page1/content/content?q=othercontent

1 个答案:

答案 0 :(得分:0)

$_GET

在互联网上搜索$ _GET和Url参数,即GET URL parameter in PHP

<div class="col s9 grey right">
<!-- Teal page content  -->
<div class="card-panel z-depth-2">
 <div class="row center">
            <div class="col s12">
                <?php  include 'content.php';
                if ($_GET['c'] == 'page') {
                    echo 'Ala ma kotA';
                } else {
                    echo 'Ala nie ma kotA';
                }
                ?>

            </div><!---panel personal stats---->
        </div><!---profile container row--->