Ejemplo n.º 1
0
// Check for POST
if ($_SERVER['REQUEST_METHOD'] == 'POST') {
    // Check that we have an action in our post vars
    if (isset($_POST['action'])) {
        switch ($_POST['action']) {
            case "play":
                // play action gets played
                $request->play(urldecode($_POST['file']), $_POST['file_type']);
                break;
            case "queue":
                // queue action gets queued
                $request->queue(urldecode($_POST['file']), $_POST['file_type']);
                break;
            case "control":
                // control action only has skip right now, so skip
                $request->skip();
                break;
        }
    }
    die;
}
?>
<!DOCTYPE HTML>
<html>
<head>
    <style>
        <!--
        a.button {
            background:#000;
            color: #fff;
            float: left;