diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-08-19 08:50:35 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-08-19 08:50:35 +0000 |
commit | bc36b9d282aff16dfc794819919897103c94b9bd (patch) | |
tree | 1d3cec755afbf08a595c4164d47a219b2dfa7ed3 /random.php | |
parent | d560bb1c7b7e675ad72af0731df18757bf9d5700 (diff) | |
download | ampache-bc36b9d282aff16dfc794819919897103c94b9bd.tar.gz ampache-bc36b9d282aff16dfc794819919897103c94b9bd.tar.bz2 ampache-bc36b9d282aff16dfc794819919897103c94b9bd.zip |
added some basic random functionality, need to make the advanced page
Diffstat (limited to 'random.php')
-rw-r--r-- | random.php | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/random.php b/random.php new file mode 100644 index 00000000..1ede94e0 --- /dev/null +++ b/random.php @@ -0,0 +1,35 @@ +<?php +/* + + Copyright (c) 2001 - 2007 Ampache.org + All rights reserved. + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU General Public License + as published by the Free Software Foundation; version 2 + of the License. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +*/ + +require_once 'lib/init.php'; + +show_header(); + +switch ($_REQUEST['action']) { + default: + case 'advanced': + + break; +} // end switch + +show_footer(); +?> |