Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Pro Lucas
- //
- //
- // VIDEOTRAILER.PHP
- // PEGAR O VIDEO DO TRAILER E COLOCAR NA PÁGINA
- //
- //
- <?php
- $s = file_get_contents("http://www.cineclick.com.br/busca/filtroBusca?area=trailer&buscaGeral=" .urlencode($_GET['q']));
- preg_match_all('/<a href="(.*?)" class="pequena2 padrao5">/', $s, $result);
- $url = $result[1][0];
- $arr = explode('file=', file_get_contents($url));
- $err = explode('&', $arr[1]);
- $url = $err[0];
- ?>
- <div style="display:inline-block;">
- <script type="text/javascript" src="http://www.webestools.com/page/js/flashobject.js"></script>
- <div id="lecteur_40501" style="display:inline-block;">
- <a href="http://get.adobe.com/fr/flashplayer/">You need to install the Flash plugin</a> - <a href="http://www.webestools.com/">Webestools</a> - <a href="http://www.webestools.com/flv-player-free-flash-mp4-mov-h264-put-videos-on-your-website-streaming-video-player-flv.html">Flash Flv Video Player</a>
- </div>
- <script type="text/javascript">
- //<!--
- var flashvars_40501 = {};
- var params_40501 = {
- quality: "high",
- bgcolor: "#000000",
- allowScriptAccess: "always",
- allowFullScreen: "true",
- wmode: "transparent", flashvars: "fichier=<?php echo $url; ?>&apercu=http://2.bp.blogspot.com/_c7xvHvN4XHQ/TTg9Mf7K9LI/AAAAAAAAAFI/C_vo8J-nKxA/s1600/Superbowl%2B2011%2BMovie%2BTrailer.jpg"
- };
- var attributes_40501 = {};
- flashObject("http://flash.webestools.com/flv_player/v1_27.swf", "lecteur_40501", "720", "405", "8", false, flashvars_40501, params_40501, attributes_40501);
- //-->
- </script>
- </div>
- // ================================================================================
- //
- //
- // SINOPSE.php
- // PEGAR SINOPSE DO FILME
- //
- <?php
- $s = file_get_contents("http://www.cineclick.com.br/busca/filtroBusca?area=trailer&buscaGeral=" .urlencode($_GET['q']));
- preg_match_all('/<a href="(.*?)" class="pequena2 padrao5">/', $s, $result);
- $url = $result[1][0];
- $arr = explode('id/', $result[1][0]);
- if(strlen($arr[1]) < 2) {
- die("Nao foram encontradas sinopses para este filme");
- }
- print(file_get_contents("http://www.cineclick.com.br/tvcineclick/info/id/" . $arr[1]));
- ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement