未定义的变量错误我无法弄清楚

时间:2017-08-11 02:39:18

标签: php variables

我有一个大脑屁和愚蠢/容易,因为它可能似乎无法弄明白,它真的开始惹恼我。

我得到两个相同的错误:

注意:未定义的变量:第24行的D:\ xampp \ htdocs \ DB \ users.php中的来源

这是我的users.php:



<?php include('header.php'); ?>


<!-- Main content -->
<section class="content container-fluid">

    <?php

        getSource();
        
        switch($source){
                
            case 'add_user'; //Error here line 24
                
                include "includes/page/add_user.php";
                
            break;
                
            case 'edit_user';  //same error here line 30
                
                include "includes/page/edit_user.php";
                    
            break;
                
            default:
                
                include "includes/page/view_all_users.php";
                
            break;
                
        }
    ?>


</section>
<!-- /.content -->


<?php include('footer.php'); ?>
&#13;
&#13;
&#13;

这是我的功能:

&#13;
&#13;
function getSource(){
    
    if(isset($_GET['source'])){
        
        $source = $_GET['source'];
        
    } else {
        
        $source = '';
        
    }
    
}
&#13;
&#13;
&#13;

我的View_all_users页面只有一个表格,显示数据库中的所有用户,而我的其他两个页面是空的

0 个答案:

没有答案