Bravo List

Bravo List (http://www.bvlist.com/index.php)
-   Template Shares (http://www.bvlist.com/forumdisplay.php?f=26)
-   -   Imdb (http://www.bvlist.com/showthread.php?t=11308)

Marco 13th December 2017 21:18

Imdb
 
Have anyone ideea how to change the imdb poster from imdb.com to amazon how is changed recently?

PHP Code:

    preg_match_all'#http:\/\/ia\.media-imdb.com\/images\/M\/(.*)\.jpg#isU'$photos['1']['0'], $photourls ); 

Thanks in advance, a while i used to tmdb database, but they changed too the way to post pictures.


Best wishes.

Marco

Phogo 15th December 2017 10:55

I think you would be better using the tmdb API rather than "preg_match_all". https://www.themoviedb.org/documentation/api

Marco 15th December 2017 12:05

Imdb
 
Thanks for your fast reply, i requested an api key , and received, please tell me how to insert on ts_imdb.php

Thanks again ,

Best wishes.

Marco:drink:

Phogo 15th December 2017 12:15

Hi Marco,

No, I can't sorry. But you can use the following to help, https://github.com/search?l=PHP&q=th...utf8=%E2%9C%93

Ruffneck 16th December 2017 17:17

somebody can post worked with posters ts_imdb.php ?

z3ro 24th February 2018 08:46

1 Attachment(s)
Quote:

Originally Posted by Ruffneck (Post 51053)
somebody can post worked with posters ts_imdb.php ?

good my work

edit ts_imdb.php and good

Tankcsapda 4th May 2018 20:29

1 Attachment(s)
Quote:

Originally Posted by z3ro (Post 51572)
good my work

edit ts_imdb.php and good



Danix ts_imdb.php with little fix

Marco 9th June 2018 12:12

Maybe you share it with us ?!?:drink:

Tankcsapda 9th June 2018 13:10

1 Attachment(s)
line 107 :
PHP Code:

$poster match'/poster">.*?<img.*?src="(.*?)".*?<\/td>/ms'$text); 

line 109 :
PHP Code:

preg_match_all'#https:\/\/m\.media-amazon.com\/images\/M\/(.*)\.jpg#isU'$photos['1']['0'], $photourls ); 


http in place of https in the right place

Ruffneck 4th July 2018 13:07

hi everybody !

somebody can post ts_imdb.php with worked posters ?

i cant fixed poster code...:(

Tankcsapda 4th July 2018 20:28

1 Attachment(s)
Quote:

Originally Posted by Ruffneck (Post 52173)
hi everybody !

somebody can post ts_imdb.php with worked posters ?

i cant fixed poster code...:(


I've written the solution above, basic ts_imdb.php : http://www.bvlist.com/showthread.php...highlight=imdb

Ruffneck 5th July 2018 12:03

10x men !

but this code

Code:

preg_match_all( '#https:\/\/m\.media-amazon.com\/images\/M\/(.*)\.jpg#isU', $photos['1']['0'], $photourls );
is worked just for small images not not for big primary cover

Tankcsapda 5th July 2018 15:59

Quote:

Originally Posted by Ruffneck (Post 52206)
10x men !

but this code

Code:

preg_match_all( '#https:\/\/m\.media-amazon.com\/images\/M\/(.*)\.jpg#isU', $photos['1']['0'], $photourls );
is worked just for small images not not for big primary cover

line 109
PHP Code:

$poster match'/poster">.*?<img.*?src="(.*?)".*?<\/td>/ms'$text); 

line 207
PHP Code:

preg_match_all'#https:\/\/m\.media-amazon.com\/images\/M\/(.*)\.jpg#isU'$photos['1']['0'], $photourls ); 


Ruffneck 6th July 2018 11:22

10x :drink::drink::drink::drink::drink::drink:

Tankcsapda 6th July 2018 15:12

1 Attachment(s)
Quote:

Originally Posted by Ruffneck (Post 52208)
10x :drink::drink::drink::drink::drink::drink:

so there is a forum - help each other ... :drink:

Bump:

Napon 22nd November 2018 16:01

1 Attachment(s)
your code not working and there more to edit lang upload takeupload so on with https


Code:

function cleanstring( $imputString )
{
    $whatToCleanArray = array(
        chr( 13 ),
        chr( 10 ),
        chr( 13 ).chr( 10 ),
        chr( 10 ).chr( 13 ),
        "\n",
        "  ",
        "  ",
        "    ",
        "\n\n",
        "\n\r",
        "",
        "
",
        ""
    );
    $cleanWithArray = array( "", "", "", "", "", "", "", "", "", "", "", "", "" );
    $cleaned = str_replace( $whatToCleanArray, $cleanWithArray, $imputString );
    $cleaned = trim( $cleaned );
    return $cleaned;
}

function fetch_data( $url, $cleantext = true )
{
    @ini_set( "user_agent", "TS_SE via cURL/PHP" );
    $data = false;
    $timeout = 10;
    if ( function_exists( "curl_init" ) && ( $ch = curl_init( ) ) )
    {
        $CURLUSED = true;
        curl_setopt( $ch, CURLOPT_URL, $url );
        curl_setopt( $ch, CURLOPT_RETURNTRANSFER, 1 );
        curl_setopt( $ch, CURLOPT_CONNECTTIMEOUT, $timeout );
        $data = curl_exec( $ch );
        curl_close( $ch );
    }
    if ( !isset( $CURLUSED ) && !$data && ini_get( "allow_url_fopen" ) )
    {
        $old = ini_set( "default_socket_timeout", $timeout );
        $contents = "";
        if ( $handle = @fopen( $url, "rb" ) )
        {
            ini_set( "default_socket_timeout", $old );
            stream_set_timeout( $handle, $timeout );
            stream_set_blocking( $handle, 0 );
            while ( !feof( $handle ) )
            {
                $contents .= fread( $handle, 8192 );
            }
            fclose( $handle );
            $data = $contents;
            unset( $contents );
        }
    }
    return $data ? $cleantext == true ? cleanstring( $data ) : $data : false;


function match_all($regex, $str, $i = 0) {
    if (preg_match_all( $regex, $str, $matches ) === false) {
        return false;
    }

    return $matches[$i];
}

function get_match($regex, $content) {
    preg_match( $regex, $content, $matches );
    return (isset( $matches[1] ) ? trim( $matches[1] ) : false);
}

function match($regex, $str, $i = 0) {
    if (preg_match( $regex, $str, $match ) == 1) {
        return $match[$i];
    }

    return false;
}

  @error_reporting (E_ALL & ~E_NOTICE);
  @ini_set ('error_reporting', E_ALL & ~E_NOTICE);
  @ini_set ('display_errors', '0');
  @ini_set ('log_errors', '1');
  @ini_set ('max_execution_time', '20000');
  @ini_set ('max_input_time', '20000');
  define ('TS_IMDB_VERSION', '0.9 by xam');
  if (((!defined ('IN_TRACKER') OR !defined ('IN_SCRIPT_TSSEv56')) OR !defined ('TU_VERSION')))
  {
    exit ('Error! Direct initialization of this file is not allowed.');
  }

  $regex = '#https://www.imdb.com/title/(.*)/#U';
  preg_match ($regex, $t_link, $_id_);
  $_id_ = $_id_[1];
  $url = '' . 'https://www.imdb.com/title/' . $_id_ . '/';
  $text = fetch_data ($url);

  $poster = match( '/poster">.*?/ms', $text, 1 );

if (( ( $poster != '' && strrpos( $poster, 'nopicture' ) === false ) && strrpos( $poster, 'ad.doubleclick' ) === false )) {
    file_put_contents( '' . $torrent_dir . '/images/' . $_id_ . '.jpg', fetch_data( $poster, false ) );
    $poster = '' . $BASEURL . '/' . $torrent_dir . '/images/' . $_id_ . '.jpg';
}
else {
    $poster = '';
}

$directors = array(  );
foreach (match_all( '/(.*?)<\/a>/ms', match( '/Director.?:(.*?)(<\/div>|>.?and )/ms', $text, 1 ), 1 ) as $m) {
    array_push( $directors, $m );
}
$directors = strip_tags( implode( ', ', $directors ) );

$writers = array(  );
foreach (match_all( '/(.*?)<\/a>/ms', match( '/Writer.?:(.*?)(<\/div>|>.?and )/ms', $text, 1 ), 1 ) as $m) {

    if (!preg_match( '#more credit#', $m )) {
        array_push( $writers, $m );
        continue;
    }
}
$writers = strip_tags( implode( ', ', $writers ) );

$stars = array(  );
foreach (match_all( '/(.*?)<\/a>/ms', match( '/Stars.?:(.*?)(<\/div>| See full cast and crew)/ms', $text, 1 ), 1 ) as $m) {

    if (!preg_match( '#more credit#', $m )) {
        array_push( $stars, $m );
        continue;
    }
}
$stars = strip_tags( implode( ', ', $stars ) );

  $regex = '#(.*)#U';
  preg_match_all ($regex, $text, $title, PREG_SET_ORDER);
  $regex = '#

Budget:

(.*)
#U';
  preg_match_all ($regex, $text, $budget, PREG_SET_ORDER);
  $regex = '#

Also Known As:

(.*)   preg_match_all ($regex, $text, $alsoknownas, PREG_SET_ORDER);
  $regex = '#

Aspect Ratio:

(.*)
#U';
  preg_match_all ($regex, $text, $aspectratio, PREG_SET_ORDER);
  $regex = '#]* data-video="(.*)"[^>]*>(.*)   preg_match_all ($regex, $text, $trailer, PREG_SET_ORDER);
  $regex = '#

Taglines:

(.*)
#U';
  preg_match_all ($regex, $text, $taglines, PREG_SET_ORDER);
  $regex = '#

Filming Locations:

(.*)   preg_match_all ($regex, $text, $filminglocations, PREG_SET_ORDER);
  $title = strip_tags ($title[0][1]);
  $trailers = '' . 'https://www.imdb.com/video/imdb/' . $trailer[0][1] . '';
 
  $langs = array(  );
  foreach (match_all( '/(.*?)<\/a>/ms', match( '/Language.?:(.*?)(<\/div>|See more)/ms', $text, 1 ), 1 ) as $m) {
    array_push( $langs, $m );
}

  $genres = array(  );
  foreach (match_all( '/(.*?)<\/a>/ms', match( '/Genre.?:(.*?)(<\/div>|See more)/ms', $text, 1 ), 1 ) as $m) {
    array_push( $genres, $m );
}

  $soundmix = array(  );
  foreach (match_all( '/(.*?)<\/a>/ms', match( '/Sound Mix.?:(.*?)(<\/div>|See more)/ms', $text, 1 ), 1 ) as $m) {
    array_push( $soundmix, $m );
}

  $country = array(  );
  foreach (match_all( '/(.*?)<\/a>/ms', match( '/Country.?:(.*?)(<\/div>|See more)/ms', $text, 1 ), 1 ) as $m) {
    array_push( $country, $m );
}

  $plotkeywords = array(  );
  foreach (match_all( '/(.*?)<\/a>/ms', match( '/Plot Keywords.?:(.*?)(<\/div>|See more)/ms', $text, 1 ), 1 ) as $m) {
    array_push( $plotkeywords, $m );
}

  $langs = strip_tags( implode( ' | ', $langs ) );
  $genres = strip_tags( implode( ' | ', $genres ) );
  $soundmix = strip_tags( implode( ' | ', $soundmix ) );
  $country = strip_tags( implode( ' | ', $country ) );
  $plotkeywords = strip_tags( implode( ' | ', $plotkeywords ) ); 
  $rating = strip_tags( match( '/itemprop="ratingValue">([0-9].[0-9])<\/span>/ms', $text, 1 ) );
  $votes = strip_tags( match( '/(.*?)<\/span>/ms', $text, 1 ) );
  $release_date = strip_tags( match( '/Release Date:<\/h4>.*?([0-9][0-9]? (January|February|March|April|May|June|July|August|September|October|November|December) (19|20)[0-9][0-9]).*?(\(|   $run_time = strip_tags( get_match( '/Runtime:<\/h4>(.*)<\/div>/isU', $text ) );
  $storyline = strip_tags( match( '/Storyline<\/h2>(.*?)(|  
  $officialsites = get_match( '/Official Sites:<\/h4>(.*)/isU', $text );
  if ($officialsites !== false)
  $officialsites = str_replace('/offsite/', 'https://www.imdb.com/offsite/', $officialsites);
  $officialsites = str_replace('
  preg_match_all( '#
(.*)<\/div>#isU', $text, $photos );
  if (isset( $photos['1']['0'] )) {
    preg_match_all( '#https:\/\/m\.media-amazon.com\/images\/M\/(.*)\.jpg#isU', $photos['1']['0'], $photourls );
}

$extra = '';
$photoarray = array(  );

if (( isset( $photourls['0'] ) && 0 < count( $photourls['0'] ) )) {
    foreach ($photourls['0'] as $pid => $photo) {
        $ext = get_extension( $photo );
        $photoname = '' . $torrent_dir . '/images/' . $_id_ . '_photo' . $pid . '.' . $ext;

        if (file_exists( $photoname )) {
            @unlink( $photoname );
        }


        if ($handle = fopen( $photoname, 'x' )) {
            if (fwrite( $handle, fetch_data( $photo, false ) )) {
                $photoarray[] = $BASEURL . '/' . $photoname;
            }

            fclose( $handle );
            continue;
        }
    }


    if (( $photoarray && count( $photoarray ) )) {
        $extra = '
';
        foreach ($photoarray as $photo) {
            $extra .= ' ';
        }

        $extra .= '
';
    }
}
 
  $t_link = '' . '
' . $title . '
' . ($poster ? '\''' : '') . '' . ($alsoknownas[0][1] ? 'Also known as: ' . strip_tags (str_replace ('more', '', $alsoknownas[0][1])) . '' : '') . ($officialsites ? 'Official sites: ' . $officialsites . '' : '') . 'Director/s: ' . $directors . '' . 'Writer/s: ' . $writers . '' . 'Stars: ' . $stars . '' . 'Genre: ' . $genres . '' . ($release_date ? 'Release date: ' . $release_date . '' : '') . 'User Rating: ' . $rating . '/10 (' . ($votes ? $votes : 'awaiting 5') . ' votes)' . ('' . 'Language: '. $langs .'Country: ' . $country . '') . ($filminglocations[0][1] ? 'Filming locations: ' . strip_tags (str_replace ('more', '', $filminglocations[0][1])) . '' : '') . ($run_time ? 'Runtime: ' . $run_time . '' : '') . ($budget[0][1] ? 'Budget: ' . $budget[0][1] . '' : '') . ($soundmix ? 'Sound mix: ' . $soundmix . '' : '') . ($aspectratio[0][1] ? 'Aspect ratio: ' . $aspectratio[0][1] . '' : '') . 'Storyline: ' . $storyline . ($plotkeywords ? 'Plot keywords: ' . $plotkeywords . '' : '') . ($taglines[0][1] ? 'Taglines: ' . strip_tags (str_replace ('more', '', $taglines[0][1])) . '' : '') . ('' . 'IMDb link: ' . $t_link . '' . $extra . '
' . ($trailer[0][1] ? '
' : '') . '');
  ?>


Tankcsapda 23rd November 2018 17:51

https://www.bvlist.com/showpost.php?p=52832&postcount=7

Quote:

Originally Posted by Napon (Post 52827)
your code not working and there more to edit lang upload takeupload so on with https


Code:

function cleanstring( $imputString )
{
    $whatToCleanArray = array(
        chr( 13 ),
        chr( 10 ),
        chr( 13 ).chr( 10 ),
        chr( 10 ).chr( 13 ),
        "\n",
        "  ",
        "  ",
        "    ",
        "\n\n",
        "\n\r",
        "",
        "
",
        ""
    );
    $cleanWithArray = array( "", "", "", "", "", "", "", "", "", "", "", "", "" );
    $cleaned = str_replace( $whatToCleanArray, $cleanWithArray, $imputString );
    $cleaned = trim( $cleaned );
    return $cleaned;
}

function fetch_data( $url, $cleantext = true )
{
    @ini_set( "user_agent", "TS_SE via cURL/PHP" );
    $data = false;
    $timeout = 10;
    if ( function_exists( "curl_init" ) && ( $ch = curl_init( ) ) )
    {
        $CURLUSED = true;
        curl_setopt( $ch, CURLOPT_URL, $url );
        curl_setopt( $ch, CURLOPT_RETURNTRANSFER, 1 );
        curl_setopt( $ch, CURLOPT_CONNECTTIMEOUT, $timeout );
        $data = curl_exec( $ch );
        curl_close( $ch );
    }
    if ( !isset( $CURLUSED ) && !$data && ini_get( "allow_url_fopen" ) )
    {
        $old = ini_set( "default_socket_timeout", $timeout );
        $contents = "";
        if ( $handle = @fopen( $url, "rb" ) )
        {
            ini_set( "default_socket_timeout", $old );
            stream_set_timeout( $handle, $timeout );
            stream_set_blocking( $handle, 0 );
            while ( !feof( $handle ) )
            {
                $contents .= fread( $handle, 8192 );
            }
            fclose( $handle );
            $data = $contents;
            unset( $contents );
        }
    }
    return $data ? $cleantext == true ? cleanstring( $data ) : $data : false;


function match_all($regex, $str, $i = 0) {
    if (preg_match_all( $regex, $str, $matches ) === false) {
        return false;
    }

    return $matches[$i];
}

function get_match($regex, $content) {
    preg_match( $regex, $content, $matches );
    return (isset( $matches[1] ) ? trim( $matches[1] ) : false);
}

function match($regex, $str, $i = 0) {
    if (preg_match( $regex, $str, $match ) == 1) {
        return $match[$i];
    }

    return false;
}

  @error_reporting (E_ALL & ~E_NOTICE);
  @ini_set ('error_reporting', E_ALL & ~E_NOTICE);
  @ini_set ('display_errors', '0');
  @ini_set ('log_errors', '1');
  @ini_set ('max_execution_time', '20000');
  @ini_set ('max_input_time', '20000');
  define ('TS_IMDB_VERSION', '0.9 by xam');
  if (((!defined ('IN_TRACKER') OR !defined ('IN_SCRIPT_TSSEv56')) OR !defined ('TU_VERSION')))
  {
    exit ('Error! Direct initialization of this file is not allowed.');
  }

  $regex = '#https://www.imdb.com/title/(.*)/#U';
  preg_match ($regex, $t_link, $_id_);
  $_id_ = $_id_[1];
  $url = '' . 'https://www.imdb.com/title/' . $_id_ . '/';
  $text = fetch_data ($url);

  $poster = match( '/poster">.*?/ms', $text, 1 );

if (( ( $poster != '' && strrpos( $poster, 'nopicture' ) === false ) && strrpos( $poster, 'ad.doubleclick' ) === false )) {
    file_put_contents( '' . $torrent_dir . '/images/' . $_id_ . '.jpg', fetch_data( $poster, false ) );
    $poster = '' . $BASEURL . '/' . $torrent_dir . '/images/' . $_id_ . '.jpg';
}
else {
    $poster = '';
}

$directors = array(  );
foreach (match_all( '/(.*?)<\/a>/ms', match( '/Director.?:(.*?)(<\/div>|>.?and )/ms', $text, 1 ), 1 ) as $m) {
    array_push( $directors, $m );
}
$directors = strip_tags( implode( ', ', $directors ) );

$writers = array(  );
foreach (match_all( '/(.*?)<\/a>/ms', match( '/Writer.?:(.*?)(<\/div>|>.?and )/ms', $text, 1 ), 1 ) as $m) {

    if (!preg_match( '#more credit#', $m )) {
        array_push( $writers, $m );
        continue;
    }
}
$writers = strip_tags( implode( ', ', $writers ) );

$stars = array(  );
foreach (match_all( '/(.*?)<\/a>/ms', match( '/Stars.?:(.*?)(<\/div>| See full cast and crew)/ms', $text, 1 ), 1 ) as $m) {

    if (!preg_match( '#more credit#', $m )) {
        array_push( $stars, $m );
        continue;
    }
}
$stars = strip_tags( implode( ', ', $stars ) );

  $regex = '#(.*)#U';
  preg_match_all ($regex, $text, $title, PREG_SET_ORDER);
  $regex = '#

Budget:

(.*)
#U';
  preg_match_all ($regex, $text, $budget, PREG_SET_ORDER);
  $regex = '#

Also Known As:

(.*)   preg_match_all ($regex, $text, $alsoknownas, PREG_SET_ORDER);
  $regex = '#

Aspect Ratio:

(.*)
#U';
  preg_match_all ($regex, $text, $aspectratio, PREG_SET_ORDER);
  $regex = '#]* data-video="(.*)"[^>]*>(.*)   preg_match_all ($regex, $text, $trailer, PREG_SET_ORDER);
  $regex = '#

Taglines:

(.*)
#U';
  preg_match_all ($regex, $text, $taglines, PREG_SET_ORDER);
  $regex = '#

Filming Locations:

(.*)   preg_match_all ($regex, $text, $filminglocations, PREG_SET_ORDER);
  $title = strip_tags ($title[0][1]);
  $trailers = '' . 'https://www.imdb.com/video/imdb/' . $trailer[0][1] . '';
 
  $langs = array(  );
  foreach (match_all( '/(.*?)<\/a>/ms', match( '/Language.?:(.*?)(<\/div>|See more)/ms', $text, 1 ), 1 ) as $m) {
    array_push( $langs, $m );
}

  $genres = array(  );
  foreach (match_all( '/(.*?)<\/a>/ms', match( '/Genre.?:(.*?)(<\/div>|See more)/ms', $text, 1 ), 1 ) as $m) {
    array_push( $genres, $m );
}

  $soundmix = array(  );
  foreach (match_all( '/(.*?)<\/a>/ms', match( '/Sound Mix.?:(.*?)(<\/div>|See more)/ms', $text, 1 ), 1 ) as $m) {
    array_push( $soundmix, $m );
}

  $country = array(  );
  foreach (match_all( '/(.*?)<\/a>/ms', match( '/Country.?:(.*?)(<\/div>|See more)/ms', $text, 1 ), 1 ) as $m) {
    array_push( $country, $m );
}

  $plotkeywords = array(  );
  foreach (match_all( '/(.*?)<\/a>/ms', match( '/Plot Keywords.?:(.*?)(<\/div>|See more)/ms', $text, 1 ), 1 ) as $m) {
    array_push( $plotkeywords, $m );
}

  $langs = strip_tags( implode( ' | ', $langs ) );
  $genres = strip_tags( implode( ' | ', $genres ) );
  $soundmix = strip_tags( implode( ' | ', $soundmix ) );
  $country = strip_tags( implode( ' | ', $country ) );
  $plotkeywords = strip_tags( implode( ' | ', $plotkeywords ) ); 
  $rating = strip_tags( match( '/itemprop="ratingValue">([0-9].[0-9])<\/span>/ms', $text, 1 ) );
  $votes = strip_tags( match( '/(.*?)<\/span>/ms', $text, 1 ) );
  $release_date = strip_tags( match( '/Release Date:<\/h4>.*?([0-9][0-9]? (January|February|March|April|May|June|July|August|September|October|November|December) (19|20)[0-9][0-9]).*?(\(|   $run_time = strip_tags( get_match( '/Runtime:<\/h4>(.*)<\/div>/isU', $text ) );
  $storyline = strip_tags( match( '/Storyline<\/h2>(.*?)(|  
  $officialsites = get_match( '/Official Sites:<\/h4>(.*)/isU', $text );
  if ($officialsites !== false)
  $officialsites = str_replace('/offsite/', 'https://www.imdb.com/offsite/', $officialsites);
  $officialsites = str_replace('
  preg_match_all( '#
(.*)<\/div>#isU', $text, $photos );
  if (isset( $photos['1']['0'] )) {
    preg_match_all( '#https:\/\/m\.media-amazon.com\/images\/M\/(.*)\.jpg#isU', $photos['1']['0'], $photourls );
}

$extra = '';
$photoarray = array(  );

if (( isset( $photourls['0'] ) && 0 < count( $photourls['0'] ) )) {
    foreach ($photourls['0'] as $pid => $photo) {
        $ext = get_extension( $photo );
        $photoname = '' . $torrent_dir . '/images/' . $_id_ . '_photo' . $pid . '.' . $ext;

        if (file_exists( $photoname )) {
            @unlink( $photoname );
        }


        if ($handle = fopen( $photoname, 'x' )) {
            if (fwrite( $handle, fetch_data( $photo, false ) )) {
                $photoarray[] = $BASEURL . '/' . $photoname;
            }

            fclose( $handle );
            continue;
        }
    }


    if (( $photoarray && count( $photoarray ) )) {
        $extra = '
';
        foreach ($photoarray as $photo) {
            $extra .= ' ';
        }

        $extra .= '
';
    }
}
 
  $t_link = '' . '
' . $title . '
' . ($poster ? '\''' : '') . '' . ($alsoknownas[0][1] ? 'Also known as: ' . strip_tags (str_replace ('more', '', $alsoknownas[0][1])) . '' : '') . ($officialsites ? 'Official sites: ' . $officialsites . '' : '') . 'Director/s: ' . $directors . '' . 'Writer/s: ' . $writers . '' . 'Stars: ' . $stars . '' . 'Genre: ' . $genres . '' . ($release_date ? 'Release date: ' . $release_date . '' : '') . 'User Rating: ' . $rating . '/10 (' . ($votes ? $votes : 'awaiting 5') . ' votes)' . ('' . 'Language: '. $langs .'Country: ' . $country . '') . ($filminglocations[0][1] ? 'Filming locations: ' . strip_tags (str_replace ('more', '', $filminglocations[0][1])) . '' : '') . ($run_time ? 'Runtime: ' . $run_time . '' : '') . ($budget[0][1] ? 'Budget: ' . $budget[0][1] . '' : '') . ($soundmix ? 'Sound mix: ' . $soundmix . '' : '') . ($aspectratio[0][1] ? 'Aspect ratio: ' . $aspectratio[0][1] . '' : '') . 'Storyline: ' . $storyline . ($plotkeywords ? 'Plot keywords: ' . $plotkeywords . '' : '') . ($taglines[0][1] ? 'Taglines: ' . strip_tags (str_replace ('more', '', $taglines[0][1])) . '' : '') . ('' . 'IMDb link: ' . $t_link . '' . $extra . '
' . ($trailer[0][1] ? '
' : '') . '');
  ?>



Napon 25th November 2018 18:41

even your update is the same out put as i posted


Code:

function cleanstring( $imputString )
{
    $whatToCleanArray = array(
        chr( 13 ),
        chr( 10 ),
        chr( 13 ).chr( 10 ),
        chr( 10 ).chr( 13 ),
        "\n",
        "  ",
        "  ",
        "    ",
        "\n\n",
        "\n\r",
        "",
        "
",
        ""
    );
    $cleanWithArray = array( "", "", "", "", "", "", "", "", "", "", "", "", "" );
    $cleaned = str_replace( $whatToCleanArray, $cleanWithArray, $imputString );
    $cleaned = trim( $cleaned );
    return $cleaned;
}

function fetch_data( $url, $cleantext = true )
{
    @ini_set( "user_agent", "TS_SE via cURL/PHP" );
    $data = false;
    $timeout = 10;
    if ( function_exists( "curl_init" ) && ( $ch = curl_init( ) ) )
    {
        $CURLUSED = true;
        curl_setopt( $ch, CURLOPT_URL, $url );
        curl_setopt( $ch, CURLOPT_RETURNTRANSFER, 1 );
        curl_setopt( $ch, CURLOPT_CONNECTTIMEOUT, $timeout );
        $data = curl_exec( $ch );
        curl_close( $ch );
    }
    if ( !isset( $CURLUSED ) && !$data && ini_get( "allow_url_fopen" ) )
    {
        $old = ini_set( "default_socket_timeout", $timeout );
        $contents = "";
        if ( $handle = @fopen( $url, "rb" ) )
        {
            ini_set( "default_socket_timeout", $old );
            stream_set_timeout( $handle, $timeout );
            stream_set_blocking( $handle, 0 );
            while ( !feof( $handle ) )
            {
                $contents .= fread( $handle, 8192 );
            }
            fclose( $handle );
            $data = $contents;
            unset( $contents );
        }
    }
    return $data ? $cleantext == true ? cleanstring( $data ) : $data : false;
}

function match_all($regex, $str, $i = 0) {
    if (preg_match_all( $regex, $str, $matches ) === false) {
        return false;
    }

    return $matches[$i];
}

function get_match($regex, $content) {
    preg_match( $regex, $content, $matches );
    return (isset( $matches[1] ) ? trim( $matches[1] ) : false);
}

function match($regex, $str, $i = 0) {
    if (preg_match( $regex, $str, $match ) == 1) {
        return $match[$i];
    }

    return false;
}

  @error_reporting (E_ALL & ~E_NOTICE);
  @ini_set ('error_reporting', E_ALL & ~E_NOTICE);
  @ini_set ('display_errors', '0');
  @ini_set ('log_errors', '1');
  @ini_set ('max_execution_time', '20000');
  @ini_set ('max_input_time', '20000');
  define ('TS_IMDB_VERSION', '0.9 by xam');
  if (((!defined ('IN_TRACKER') OR !defined ('IN_SCRIPT_TSSEv56')) OR !defined ('TU_VERSION')))
  {
    exit ('Error! Direct initialization of this file is not allowed.');
  }

  $regex = '#http://www.imdb.com/title/(.*)/#U';
  preg_match ($regex, $t_link, $_id_);
  $_id_ = $_id_[1];
  $url = '' . 'https://www.imdb.com/title/' . $_id_ . '/';
  $text = fetch_data ($url);

  $poster = match( '/poster">.*?/ms', $text, 1 );

if (( ( $poster != '' && strrpos( $poster, 'nopicture' ) === false ) && strrpos( $poster, 'ad.doubleclick' ) === false )) {
    file_put_contents( '' . $torrent_dir . '/images/' . $_id_ . '.jpg', fetch_data( $poster, false ) );
    $poster = '' . $BASEURL . '/' . $torrent_dir . '/images/' . $_id_ . '.jpg';
}
else {
    $poster = '';
}

$directors = array(  );
foreach (match_all( '/(.*?)<\/a>/ms', match( '/Director.?:(.*?)(<\/div>|>.?and )/ms', $text, 1 ), 1 ) as $m) {
    array_push( $directors, $m );
}
$directors = strip_tags( implode( ', ', $directors ) );

$writers = array(  );
foreach (match_all( '/(.*?)<\/a>/ms', match( '/Writer.?:(.*?)(<\/div>|>.?and )/ms', $text, 1 ), 1 ) as $m) {

    if (!preg_match( '#more credit#', $m )) {
        array_push( $writers, $m );
        continue;
    }
}
$writers = strip_tags( implode( ', ', $writers ) );

$stars = array(  );
foreach (match_all( '/(.*?)<\/a>/ms', match( '/Stars.?:(.*?)(<\/div>| See full cast and crew)/ms', $text, 1 ), 1 ) as $m) {

    if (!preg_match( '#more credit#', $m )) {
        array_push( $stars, $m );
        continue;
    }
}
$stars = strip_tags( implode( ', ', $stars ) );

  $regex = '#(.*)#U';
  preg_match_all ($regex, $text, $title, PREG_SET_ORDER);
  $regex = '#

Budget:

(.*)
#U';
  preg_match_all ($regex, $text, $budget, PREG_SET_ORDER);
  $regex = '#

Also Known As:

(.*)   preg_match_all ($regex, $text, $alsoknownas, PREG_SET_ORDER);
  $regex = '#

Aspect Ratio:

(.*)
#U';
  preg_match_all ($regex, $text, $aspectratio, PREG_SET_ORDER);
  $regex = '#]* data-video="(.*)"[^>]*>(.*)   preg_match_all ($regex, $text, $trailer, PREG_SET_ORDER);
  $regex = '#

Taglines:

(.*)
#U';
  preg_match_all ($regex, $text, $taglines, PREG_SET_ORDER);
  $regex = '#

Filming Locations:

(.*)   preg_match_all ($regex, $text, $filminglocations, PREG_SET_ORDER);
  $title = strip_tags ($title[0][1]);
  $trailers = '' . 'https://www.imdb.com/video/imdb/' . $trailer[0][1] . '';

  $langs = array(  );
  foreach (match_all( '/(.*?)<\/a>/ms', match( '/Language.?:(.*?)(<\/div>|See more)/ms', $text, 1 ), 1 ) as $m) {
    array_push( $langs, $m );
}

  $genres = array(  );
  foreach (match_all( '/(.*?)<\/a>/ms', match( '/Genre.?:(.*?)(<\/div>|See more)/ms', $text, 1 ), 1 ) as $m) {
    array_push( $genres, $m );
}

  $soundmix = array(  );
  foreach (match_all( '/(.*?)<\/a>/ms', match( '/Sound Mix.?:(.*?)(<\/div>|See more)/ms', $text, 1 ), 1 ) as $m) {
    array_push( $soundmix, $m );
}

  $country = array(  );
  foreach (match_all( '/(.*?)<\/a>/ms', match( '/Country.?:(.*?)(<\/div>|See more)/ms', $text, 1 ), 1 ) as $m) {
    array_push( $country, $m );
}

  $plotkeywords = array(  );
  foreach (match_all( '/(.*?)<\/a>/ms', match( '/Plot Keywords.?:(.*?)(<\/div>|See more)/ms', $text, 1 ), 1 ) as $m) {
    array_push( $plotkeywords, $m );
}

  $langs = strip_tags( implode( ' | ', $langs ) );
  $genres = strip_tags( implode( ' | ', $genres ) );
  $soundmix = strip_tags( implode( ' | ', $soundmix ) );
  $country = strip_tags( implode( ' | ', $country ) );
  $plotkeywords = strip_tags( implode( ' | ', $plotkeywords ) );
  $rating = strip_tags( match( '/itemprop="ratingValue">([0-9].[0-9])<\/span>/ms', $text, 1 ) );
  $votes = strip_tags( match( '/(.*?)<\/span>/ms', $text, 1 ) );
  $release_date = strip_tags( match( '/Release Date:<\/h4>.*?([0-9][0-9]? (January|February|March|April|May|June|July|August|September|October|November|December) (19|20)[0-9][0-9]).*?(\(|   $run_time = strip_tags( get_match( '/Runtime:<\/h4>(.*)<\/div>/isU', $text ) );
  $storyline = strip_tags( match( '/Storyline<\/h2>(.*?)(|
  $officialsites = get_match( '/Official Sites:<\/h4>(.*)/isU', $text );
  if ($officialsites !== false)
  $officialsites = str_replace('/offsite/', 'https://www.imdb.com/offsite/', $officialsites);
  $officialsites = str_replace('
  preg_match_all( '#
(.*)<\/div>#isU', $text, $photos );
  if (isset( $photos['1']['0'] )) {
    preg_match_all( '#https:\/\/m\.media-amazon.com\/images\/M\/(.*)\.jpg#isU', $photos['1']['0'], $photourls );
}

$extra = '';
$photoarray = array(  );

if (( isset( $photourls['0'] ) && 0 < count( $photourls['0'] ) )) {
    foreach ($photourls['0'] as $pid => $photo) {
        $ext = get_extension( $photo );
        $photoname = '' . $torrent_dir . '/images/' . $_id_ . '_photo' . $pid . '.' . $ext;

        if (file_exists( $photoname )) {
            @unlink( $photoname );
        }


        if ($handle = fopen( $photoname, 'x' )) {
            if (fwrite( $handle, fetch_data( $photo, false ) )) {
                $photoarray[] = $BASEURL . '/' . $photoname;
            }

            fclose( $handle );
            continue;
        }
    }


    if (( $photoarray && count( $photoarray ) )) {
        $extra = '
';
        foreach ($photoarray as $photo) {
            $extra .= ' ';
        }

        $extra .= '
';
    }
}

  $t_link = '' . '
' . $title . '
' . ($poster ? '\''' : '') . '' . ($alsoknownas[0][1] ? 'Also known as: ' . strip_tags (str_replace ('more', '', $alsoknownas[0][1])) . '' : '') . ($officialsites ? 'Official sites: ' . $officialsites . '' : '') . 'Director/s: ' . $directors . '' . 'Writer/s: ' . $writers . '' . 'Stars: ' . $stars . '' . 'Genre: ' . $genres . '' . ($release_date ? 'Release date: ' . $release_date . '' : '') . 'User Rating: ' . $rating . '/10 (' . ($votes ? $votes : 'awaiting 5') . ' votes)' . ('' . 'Language: '. $langs .'Country: ' . $country . '') . ($filminglocations[0][1] ? 'Filming locations: ' . strip_tags (str_replace ('more', '', $filminglocations[0][1])) . '' : '') . ($run_time ? 'Runtime: ' . $run_time . '' : '') . ($budget[0][1] ? 'Budget: ' . $budget[0][1] . '' : '') . ($soundmix ? 'Sound mix: ' . $soundmix . '' : '') . ($aspectratio[0][1] ? 'Aspect ratio: ' . $aspectratio[0][1] . '' : '') . 'Storyline: ' . $storyline . ($plotkeywords ? 'Plot keywords: ' . $plotkeywords . '' : '') . ($taglines[0][1] ? 'Taglines: ' . strip_tags (str_replace ('more', '', $taglines[0][1])) . '' : '') . ('' . 'IMDb link: ' . $t_link . '' . $extra . '
' . ($trailer[0][1] ? '
' : '') . '');
  ?>


Tankcsapda 25th November 2018 18:58

my little bit more.
 
1 Attachment(s)
PHP Code:

<?
/***********************************************/
/*=========[TS Special Edition v.5.6]==========*/
/*=============[Special Thanks To]=============*/
/*        DrNet - wWw.SpecialCoders.CoM        */
/*          Vinson - wWw.Decode4u.CoM          */
/*    MrDecoder - wWw.Fearless-Releases.CoM    */
/*           Fynnon - wWw.BvList.CoM           */
/***********************************************/
    

      
function cleanstring$imputString )
{
    
$whatToCleanArray = array(
        
chr13 ),
        
chr10 ),
        
chr13 ).chr10 ),
        
chr10 ).chr13 ),
        
"\n",
        
"  ",
        
"   ",
        
"    ",
        
"\n\n",
        
"\n\r",
        
"",
        
"<br/>",
        
""
    
);
    
$cleanWithArray = array( """""""""""""""""""""""""" );
    
$cleaned str_replace$whatToCleanArray$cleanWithArray$imputString );
    
$cleaned trim$cleaned );
    return 
$cleaned;
}

function 
fetch_data$url$cleantext true )
{
    @
ini_set"user_agent""TS_SE via cURL/PHP" );

    
$data false;
    
$timeout 10;
    if ( 
function_exists"curl_init" ) && ( $ch curl_init( ) ) )
    {
        
$CURLUSED true;
        
curl_setopt$chCURLOPT_URL$url );
        
curl_setopt$chCURLOPT_RETURNTRANSFER);
        
curl_setopt$chCURLOPT_CONNECTTIMEOUT$timeout );
//        curl_setopt( $ch, CURLOPT_HTTPHEADER, array('Accept-Charset: UTF-8'));


    
curl_setopt$chCURLOPT_ContentType, array("Accept-Language: en-US"));
        
$data curl_exec$ch );
        
curl_close$ch );


    }
    if ( !isset( 
$CURLUSED ) && !$data && ini_get"allow_url_fopen" ) )
    {
        
$old ini_set"default_socket_timeout"$timeout );
        
$contents "";
        
        
        if ( 
$handle = @fopen$url"rb" $context) )
        {
            
ini_set"default_socket_timeout"$old );
            
stream_set_timeout$handle$timeout );
            
stream_set_blocking$handle);
            while ( !
feof$handle ) )
            {
                
$contents .= fread$handle8192 );
            }
            
fclose$handle );
            
$data $contents;
            unset( 
$contents );
        }
    }
    return 
$data $cleantext == true cleanstring$data ) : $data false;
}  

function 
match_all($regex$str$i 0) {
    if (
preg_match_all$regex$str$matches ) === false) {
        return 
false;
    }

    return 
$matches[$i];
}

function 
get_match($regex$content) {
    
preg_match$regex$content$matches );
    return (isset( 
$matches[1] ) ? trim$matches[1] ) : false);
}

function 
match($regex$str$i 0) {
    if (
preg_match$regex$str$match ) == 1) {
        return 
$match[$i];
    }

    return 
false;
}

  @
error_reporting (E_ALL & ~E_NOTICE);
  @
ini_set ('error_reporting'E_ALL & ~E_NOTICE);
  @
ini_set ('display_errors''0');
  @
ini_set ('log_errors''1');
  @
ini_set ('max_execution_time''20000');
  @
ini_set ('max_input_time''20000');
  
define ('TS_IMDB_VERSION''0.9 by xam');
  if (((!
defined ('IN_TRACKER') OR !defined ('IN_SCRIPT_TSSEv56')) OR !defined ('TU_VERSION')))
  {
    exit (
'<font face=\'verdana\' size=\'2\' color=\'darkred\'><b>Error!</b> Direct initialization of this file is not allowed.</font>');
  }

  
$regex '#http://www.imdb.com/title/(.*)/#U';
  
preg_match ($regex$t_link$_id_);
  
$_id_ $_id_[1];
  
$url '' 'https://www.imdb.com/title/' $_id_ '/';
  
$text fetch_data ($url);
 

  
 
$poster match'/poster">.*?<img.*?src="(.*?)".*?<\/td>/ms'$text);

if (( ( 
$poster != '' && strrpos$poster'nopicture' ) === false ) && strrpos$poster'ad.doubleclick' ) === false )) {
    
file_put_contents'' $torrent_dir '/images/' $_id_ '.jpg'fetch_data$posterfalse ) );
    
$poster '' $BASEURL '/' $torrent_dir '/images/' $_id_ '.jpg';
}
else {
    
$poster '';
}

$directors = array(  );
foreach (
match_all'/<a.*?>(.*?)<\/a>/ms'match'/Director.?:(.*?)(<\/div>|>.?and )/ms'$text), ) as $m) {
    
array_push$directors$m );
}
$directors strip_tagsimplode', '$directors ) );

$writers = array(  );
foreach (
match_all'/<a.*?>(.*?)<\/a>/ms'match'/Writer.?:(.*?)(<\/div>|>.?and )/ms'$text), ) as $m) {

    if (!
preg_match'#more credit#'$m )) {
        
array_push$writers$m );
        continue;
    }
}
$writers strip_tagsimplode', '$writers ) );

$stars = array(  );
foreach (
match_all'/<a.*?>(.*?)<\/a>/ms'match'/Stars.?:(.*?)(<\/div>| See full cast and crew)/ms'$text), ) as $m) {

    if (!
preg_match'#more credit#'$m )) {
        
array_push$stars$m );
        continue;
    }
}
$stars strip_tagsimplode', '$stars ) );

  
$regex '#<title>(.*)</title>#U';
  
preg_match_all ($regex$text$titlePREG_SET_ORDER);
  
$regex '#<div class="txt-block"><h4 class="inline">Budget:</h4>(.*)</div>#U';
  
preg_match_all ($regex$text$budgetPREG_SET_ORDER);
  
$regex '#<div class="txt-block"><h4 class="inline">Also Known As:</h4>(.*)<a#U';
  
preg_match_all ($regex$text$alsoknownasPREG_SET_ORDER);
  
$regex '#<div class="txt-block"><h4 class="inline">Aspect Ratio:</h4>(.*)</div>#U';
  
preg_match_all ($regex$text$aspectratioPREG_SET_ORDER);
  
$regex '#<a[^>]* data-video="(.*)"[^>]*>(.*)<span#U';
  
preg_match_all ($regex$text$trailerPREG_SET_ORDER);
  
$regex '#<div class="txt-block"><h4 class="inline">Taglines:</h4>(.*)</div>#U';
  
preg_match_all ($regex$text$taglinesPREG_SET_ORDER);
  
$regex '#<div class="txt-block"><h4 class="inline">Filming Locations:</h4>(.*)<span class="see-more inline"#U';
  
preg_match_all ($regex$text$filminglocationsPREG_SET_ORDER);
  
$title strip_tags ($title[0][1]);
  
$regex '#<div class="txt-block"><h4 class="inline">Language:</h4><a(.*)>(.*)</div>#U';
  
preg_match_all ($regex$text$languagePREG_SET_ORDER);
  
$regex '#<h2>Cast</h2>(.*)</div>#U';
  
preg_match_all ($regex$text$castPREG_SET_ORDER); 

  
$regex '#<span class="rating">(.*)</span>#U';
  
preg_match_all ($regex$text$ratingPREG_SET_ORDER);

  
$regex '#<span class="small" itemprop="ratingCount">(.*)</span>#U';
  
preg_match_all ($regex$text$votesPREG_SET_ORDER);

  
$trailers '' 'https://www.imdb.com/video/imdb/' $trailer[0][1] . '';

  
  
$genres = array(  );
   foreach (
match_all'/<a.*?>(.*?)<\/a>/ms'match'/Genre.?:(.*?)(<\/div>|See more)/ms'$text), ) as $m) {
    
array_push$genres$m );
}

  
$soundmix = array(  );
   foreach (
match_all'/<a.*?>(.*?)<\/a>/ms'match'/Sound Mix.?:(.*?)(<\/div>|See more)/ms'$text), ) as $m) {
    
array_push$soundmix$m );
}

  
$country = array(  );
   foreach (
match_all'/<a.*?>(.*?)<\/a>/ms'match'/Country.?:(.*?)(<\/div>|See more)/ms'$text), ) as $m) {
    
array_push$country$m );
}

  
$plotkeywords = array(  );
   foreach (
match_all'/<a.*?>(.*?)<\/a>/ms'match'/Plot Keywords.?:(.*?)(<\/div>|See more)/ms'$text), ) as $m) {
    
array_push$plotkeywords$m );
}




  
$genres strip_tagsimplode' | '$genres ) );
  
$soundmix strip_tagsimplode' | '$soundmix ) );
  
$country strip_tagsimplode' | '$country ) );
  
$plotkeywords strip_tagsimplode' | '$plotkeywords ) );  
//  $rating = strip_tags( match( '/itemprop="ratingValue">([0-9].[0-9])<\/span>/ms', $text, 1 ) );
//  $votes = strip_tags( match( '/<span itemprop="ratingCount">(.*?)<\/span>/ms', $text, 1 ) );
  
$release_date strip_tagsmatch'/Release Date:<\/h4>.*?([0-9][0-9]? (January|February|March|April|May|June|July|August|September|October|November|December) (19|20)[0-9][0-9]).*?(\(|<span)/ms'$text) );
  
$run_time strip_tagsget_match'/Runtime:<\/h4>(.*)<\/div>/isU'$text ) );
  
$storyline strip_tagsmatch'/Storyline<\/h2>(.*)<\/div>/isU'$text ) );


  
$officialsites get_match'/Official Sites:<\/h4>(.*)<span class="see-more inline">/isU'$text );
  if (
$officialsites !== false)
  
$officialsites str_replace('/offsite/''https://www.imdb.com/offsite/'$officialsites);
  
$officialsites str_replace('<a ''<a target="_blank" '$officialsites);

  
preg_match_all'#<div class="mediastrip">(.*)<\/div>#isU'$text$photos ); 
  if (isset( 
$photos['1']['0'] )) {
    
preg_match_all'#https:\/\/m\.media-amazon.com\/images\/M\/(.*)\.jpg#isU'$photos['1']['0'], $photourls );

}

$extra '';
$photoarray = array(  );

if (( isset( 
$photourls['0'] ) && count$photourls['0'] ) )) {
    foreach (
$photourls['0'] as $pid => $photo) {
        
$ext get_extension$photo );
        
$photoname '' $torrent_dir '/images/' $_id_ '_photo' $pid '.' $ext;

        if (
file_exists$photoname )) {
            @
unlink$photoname );
        }


        if (
$handle fopen$photoname'x' )) {
            if (
fwrite$handlefetch_data$photofalse ) )) {
                
$photoarray[] = $BASEURL '/' $photoname;
            }

            
fclose$handle );
            continue;
        }
    }


    if (( 
$photoarray && count$photoarray ) )) {
        
$extra '<div align="center">';
        foreach (
$photoarray as $photo) {
            
$extra .= ' <img src="' $photo '" alt="" title="" border="0" /> ';
        }

        
$extra .= '</div>';
    }
}

   
$t_link '' '<table width=\'100%\' border=\'0\' align=\'center\' class=\'none\'><tr><td colspan=\'2\' class=\'none\' align=\'left\'><b>' $title '</b></td></tr><tr><td class=\'none\' align=\'center\' valign=\'top\'>' . ($poster '<img src=\'' $poster '\' border=\'0\' alt=\'' $title '\' title=\'' $title '\'>' '') . '</td><td class=\'none\' valign=\'top\' align=\'left\'>' . ($alsoknownas[0][1] ? '<b>Also known as:</b> ' strip_tags (str_replace ('more'''$alsoknownas[0][1])) . '' '') . ($officialsites '<b>Official sites:</b> ' $officialsites '' '') . '<b>Director/s:</b> ' $directors '' '<b>Writer/s:</b> ' $writers '' '<b>Stars:</b> ' $stars '<b>Cast:</b> ' strip_tags (str_replace ('more'''$cast[0][1])) . '' '<b>Genre:</b> ' $genres '' . ($release_date '<b>Release date:</b> ' $release_date '' '') . '<b>User Rating:</b> ' strip_tags ($rating[0][1]) . ' (' $votes[0][1] . ' szavazat)' . ('' '<b>Language:</b> ' strip_tags (str_replace ('more'''$language[0][2])) . '<b>Country:</b> ' $country '') . ($filminglocations[0][1] ? '<b>Filming locations:</b> ' strip_tags (str_replace ('more'''$filminglocations[0][1])) . '' '') . ($run_time '<b>Runtime:</b> ' $run_time '' '') . ($budget[0][1] ? '<b>Budget:</b> ' $budget[0][1] . '' '') . ($soundmix '<b>Sound mix:</b> ' $soundmix '' '') . ($aspectratio[0][1] ? '<b>Aspect ratio:</b> ' $aspectratio[0][1] . '' '') . '<b>Storyline:</b> ' $storyline . ($plotkeywords '<b>Plot keywords:</b> ' $plotkeywords '' '') . ($taglines[0][1] ? '<b>Taglines:</b> ' strip_tags (str_replace ('more'''$taglines[0][1])) . '' '') . ('' '<b>IMDb link:</b> <a href=\'' $t_link '\' target=\'_blank\' alt=\'' $title '\' title=\'' $title '\'>' $t_link '</a>' $extra '</td></tr></table>' . ($trailer[0][1] ? '<table width=\'100%\' border=\'0\' cellpadding=\'5\' cellspacing=\'0\'><tr><td align=\'center\' class=\'subheader\'><a href=\'' $trailers '\' target=\'_blank\' alt=\'' $title '\' title=\'' $title '\'><img border="0" class="inlineimg" src=\'' $BASEURL '/images/trailer.png\'></a></td></tr></table>' '') . '');
  
?>


Napon 25th November 2018 19:08

nope still same output nothing and updates 10 timezs


All times are GMT +2. The time now is 05:01.

Powered by vBulletin® Version 3.8.11 Beta 3
Copyright ©2000 - 2024, vBulletin Solutions Inc.