Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Back End Undefined index: page Reply To: Undefined index: page

#189396
__
Participant

That’s a possible cause of your problem. If this is indeed what is causing your problem, then the solution is to check if $_GET['page'] exists before you try to use it:

<?php
// add this "isset" check:
if( isset( $_GET['page'] ) ){

    if( $_GET['page']=='home' ){ 
        include "modul/home.php";
    }
    elseif( $_GET['page']=='detail' ){ 
        include "modul/detail.php";
    }

}