PHP:一个php文件 - 很多页面

时间:2014-11-17 01:50:57

标签: php

我应该制作一个名为" access.php"的PHP文件。这包含11页。我必须使用1个PHP文件。我应该使用显示每个页面的功能来实现这一点。欢迎"欢迎"页面允许用户选择"管理员"或"用户"通过单选按钮。点击提交后,应出现相应的页面。现在,管理员/用户页面功能只是回显"管理员页面"或"用户页面"用于测试目的。

理想情况下,应显示一个新页面,其中显示位于屏幕顶部中间的一个页面。但是现在正在发生的是文本"管理员页面/用户页面"只显示在欢迎屏幕的底部。

这是我的代码:

<?php
#---Functions---

#**PHP Header**
#function phpHeader(){
#print <<< EOF
#<!DOCTYPE html> 
#<head> 
#</head>
# <body>
#EOF
#}

#**PHP Footer**
#function phpFooter() {
#echo "</body> </html>";
#}

#**Admin Page**
function adminPage(){
#phpHeader();

echo "<center><h1>Administrator Page</h1></center>";

#phpFooter();
}

#**User Page**
function userPage(){
#phpHeader();

echo "<center><h1>User Page</h1></center>";

#phpFooter();
}

#**Welcome Page**
function welcomePage(){
#phpHeader();

echo "<center><h1>Welcome</h1>";
echo "<br><br><br>";
echo "<h3> Select Login Type</h3>";
echo "<br><br><br>";

echo '<form name="access" action="" method="post">';
echo '<input type="radio" name="AccessLevel" value="admin" />Administrator <br />';
echo '<input type="radio" name="AccessLevel" value="user" /> User <br /><br />';
echo '<input type="submit" name="submit" value="Choose Level" />';
echo '</form></center>';

$AccessLevel = $_POST['AccessLevel'];
if (isset($_POST['submit'])) {
    if (! isset($AccessLevel)) {
    echo '<h2>Select an option </h2>';
    }
    elseif ($AccessLevel == "admin") {
    adminPage();
    }
    else {
    userPage();
    }

}
#phpFooter();
}

welcomePage();

?>

2 个答案:

答案 0 :(得分:2)

将整个块移到页面顶部,位于开头<?php标记下方。

旁注:您可以使用return;exit;die();,选择权属于您;我使用了return;

$AccessLevel = $_POST['AccessLevel'];
if (isset($_POST['submit'])) {
    if (! isset($AccessLevel)) {
    echo '<h2>Select an option </h2>';
    }
    elseif ($AccessLevel == "admin") {
    echo adminPage();
return;
    }
    else {
    userPage();
return;
    }

}

这将仅回显页面顶部的“管理员页面”或“用户页面”,而不是其他内容。

答案 1 :(得分:1)

<?php

function adminPage(){

    return "<center><h1>Administrator Page</h1></center>";

}

function userPage(){

    return "<center><h1>User Page</h1></center>";

}

function welcomePage(){

    return '<center><h1>Welcome</h1>
<br><br><br>
<h3> Select Login Type</h3>
<br><br><br>
<form name="access" action="" method="post">
<input type="radio" name="AccessLevel" value="admin" />Administrator <br />
<input type="radio" name="AccessLevel" value="user" /> User <br /><br />
<input type="submit" name="submit" value="Choose Level" />
</form></center>';

}


$AccessLevel = $_POST['AccessLevel'];

if(isset($_POST['submit'])){
    if(!isset($AccessLevel)){
        echo welcomePage();
    }elseif($AccessLevel=="admin"){
        echo adminPage();
        echo welcomePage(); // if you want to repeat that content at the bottom again
    }elseif($AccessLevel=="user"){
        echo userPage();
        echo welcomePage(); // if you want to repeat that content at the bottom again
    }
}else{//no form submitted

 echo welcomePage();

}

?>