• //This outputs an empty array
    print_r( $_POST );

    //This function always returns null because $_POST[‘action’] is null

    function wordbook_admin_load() {
        if (!$_POST['action']) {
            return;
        }
    
     switch ($_POST['action']) {
    .....

  • The topic ‘[Plugin: Wordbook] $_POST is empty’ is closed to new replies.