2017-05-11 7 views
-2

Die markierte Linie ist die Linie 24Undefined index: action

Notice: Undefined index: Aktion in C: \ xampp \ htdocs \ authors.php on line 24

**if($_GET['action'] == "list") {** 
     $current = "members"; 
     $list = "members"; 
    } 
    else if($_GET["list"] == "authors") $current = "authors"; 
    else $current = "members"; 

Antwort

0

Prüfen Sie zuerst, ob $_GET['action'] gewesen Set oder nicht

if(isset($_GET['action'])) { 

    if($_GET['action'] == "list") { 
     $current = "members"; 
     $list = "members"; 
    } else if($_GET["list"] == "authors") { 
     $current = "authors"; 
    } else { 
     $current = "members"; 
    } 

}