clipbucket/upload/ajax/videos.php
Arslan Hassan dd336aabf5 Added : New rating functions
Added : Ajax files videos and main
Added : related videos widget
2012-05-22 11:34:45 +00:00

27 lines
No EOL
437 B
PHP

<?php
/**
* All ajax requests that are related videos or its object will be listed here
*
* @author Arslan Hassan
* @license AAL
* @since 3.0
*/
include('../includes/config.inc.php');
//Getting mode..
$mode = post('mode');
if(!$mode)
$mode - get('mode');
$mode = mysql_clean($mode);
switch($mode){
default:
exit(json_encode(array('err'=>lang('Invalid request'))));
}
?>