コード例 #1
0
ファイル: movie.php プロジェクト: hyperlogin/moviefy
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<?php 
include "class/clsDatabase.php";
include "process/processvideo.php";
$db = new Db();
$recentAdd = $db->select("SELECT * FROM `mf_movies` WHERE ID='" . $db->quote($_GET['m']) . "'");
$videoLink = new video();
$video = $videoLink->GetPicsaVideo($recentAdd[0]['stream_links']);
?>
<html>
	<head>
		<title>Moviefy - <?php 
echo $recentAdd[0]['movie_title'];
?>
</title>
		<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
		<meta name="description" content="Moviefy - Streaming Movies for all needs" />
		<link href='http://fonts.googleapis.com/css?family=PT+Sans+Narrow' rel='stylesheet' type='text/css' />
		<link href='http://fonts.googleapis.com/css?family=Dancing+Script' rel='stylesheet' type='text/css' />
        <link href='https://fonts.googleapis.com/css?family=Montserrat' rel='stylesheet' type='text/css'>
		<!--<link href="http://vjs.zencdn.net/5.0.0/video-js.min.css" media="screen" rel="stylesheet">-->
		<link href="css/videojs.caption.min.css" media="screen" rel="stylesheet">
		
		<link href='css/bootstrap.min.css' rel='stylesheet'  type="text/css"/>
		<link href='css/bootstrap-theme.min.css' rel='stylesheet'  type="text/css"/>
		<link href='css/font-awesome.min.css' rel='stylesheet'  type="text/css"/>
		
        <link href="css/easy-autocomplete.css" rel="stylesheet" type="text/css"/>
		<link href="css/easy-autocomplete.themes.css" rel="stylesheet" type="text/css" />
        
		<script src="http://code.jquery.com/jquery-1.11.3.min.js"></script>