diff options
author | Marvin Borner | 2019-05-07 18:59:17 +0200 |
---|---|---|
committer | Marvin Borner | 2019-05-07 18:59:17 +0200 |
commit | 94c2214b819c4fe75a479f37aaad99e90bfe5b63 (patch) | |
tree | ca25e4382a1ff5bcf59dc291e2d291eb7f4f8367 /assets/php/getInformation.php | |
parent | 5e94a7a562030f06994ca28a3615ec0cb3b7483a (diff) |
Almost completely overridden and overworked project
Diffstat (limited to 'assets/php/getInformation.php')
-rw-r--r-- | assets/php/getInformation.php | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/assets/php/getInformation.php b/assets/php/getInformation.php deleted file mode 100644 index c5f3ea2..0000000 --- a/assets/php/getInformation.php +++ /dev/null @@ -1,17 +0,0 @@ -<?php -/** - * Serverside Script of the Netflix Stats Generator to get information of a movie/series - * @author Marvin Borner - * @copyright Marvin Borner 2018 - */ - -$RequestedTitle = $_POST["Title"]; - -$ApiKey = file_get_contents("../../../../ApiKeys/ThemoviedbApiKey.txt"); -$ch = curl_init("https://api.themoviedb.org/3/search/multi?api_key=" . $ApiKey . "&language=en-US&query=" . urlencode($RequestedTitle) . "&page=1&include_adult=true"); -curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); -curl_setopt($ch, CURLOPT_HEADER, 0); -$Result = json_decode(curl_exec($ch), true); -curl_close($ch); - -print_r(json_encode($Result["results"][0])); |