Ejemplo n.º 1
0
                    dataType: 'json',
                    data: { action: 'control'}
                });
                event.preventDefault();
            });
        });
        // Refresh Queue
        setTimeout("location.reload(true);", 60000);
    </script>
</head>
<body>
<a class='button control' href='skip'>SKIP CURRENTLY PLAYING SONG</a>
<?php 
$request = new Request_Thingy();
$cred_array = array("username" => $_COOKIE['username'], "password" => $_COOKIE['password']);
$request->set_credentials($cred_array);
// Grab the queued songs
$queued_songs = $request->get_song_queue();
echo "<h1>Songs in the Play Queue</h1><ol class='song-queue'>";
// loop with all the songs
if (!array_key_exists("__error", $queued_songs)) {
    foreach ($queued_songs as $queued_song) {
        echo "<li>{$queued_song['artist']} - {$queued_song['name']}</li>";
    }
} else {
    print_r($queued_songs['__error']);
}
echo "</ol>";
?>
</body>
</html>