diff options
author | Marvin Borner | 2018-06-21 18:34:57 +0200 |
---|---|---|
committer | Marvin Borner | 2018-06-21 18:34:57 +0200 |
commit | c4dd258f2a49f5d72aadd75e92918f75f1a528f2 (patch) | |
tree | d0c0bb2b0c17ec5bb873a90ff8d8cab05c735678 /assets/php/getInformation.php | |
parent | 52fdffc06ae449e4a1f0c57adf95412312e42224 (diff) |
Added most watched chart
Diffstat (limited to 'assets/php/getInformation.php')
-rw-r--r-- | assets/php/getInformation.php | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/assets/php/getInformation.php b/assets/php/getInformation.php new file mode 100644 index 0000000..8dd0e6e --- /dev/null +++ b/assets/php/getInformation.php @@ -0,0 +1,11 @@ +<?php +$RequestedTitle = $_GET["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=" . $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])); |