PHP Classes

File: getplaylist.php

Recommend this page to a friend!
  Classes of Travis Tidwell   Dash Media Player   getplaylist.php   Download  
File: getplaylist.php
Role: Application script
Content type: text/plain
Description: Playlist Retrieval Script
Class: Dash Media Player
Embed the Dash Media player in a Web page
Author: By
Last change:
Date: 15 years ago
Size: 160 bytes
 

Contents

Class file image Download
<?php
require_once("DashPlaylist.php");
$playlist = new DashPlaylist( (isset($_GET['playlist']) ? $_GET['playlist'] : 'default') );
$playlist->show();
?>