This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Get the 'id' from the URL parameters | |
$id = isset($_GET['id']) ? $_GET['id'] : null; | |
if ($id) { | |
// API endpoint for the first request | |
$apiUrl = "https://terabox.hnn.workers.dev/api/get-info?shorturl={$id}&pwd="; | |
// Initialize a cURL session for the first request | |
$ch = curl_init(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Video Fetcher</title> | |
<style> | |
iframe::-webkit-scrollbar { | |
width: 0em; | |
height: 0em; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<h1>Image Uploader Tool</h1> | |
<div class="separator" style="clear: both;"><a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgDnDeXz9_jJ3zlKAdS2vIYxng1BJtqn1BroXhy4dseg5L3ZxHauGNGgEbND8lsTCaQcLx43jP3TCXq_vCIqLR9PevgPvMIfrYHq3vOQWyLEp5a_dxTuH4E2ZiZqp6lWZTBh_900gkjbzWdO_uVZvjFMFQ3hWzmvOWqXWYL7gidv_7TYPHVU-ighiseI85-/s1600/apple-icon.png" style="clear: left; display: block; float: left; padding: 1em 0px; text-align: center;"><img alt="" border="0" data-original-height="192" data-original-width="192" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgDnDeXz9_jJ3zlKAdS2vIYxng1BJtqn1BroXhy4dseg5L3ZxHauGNGgEbND8lsTCaQcLx43jP3TCXq_vCIqLR9PevgPvMIfrYHq3vOQWyLEp5a_dxTuH4E2ZiZqp6lWZTBh_900gkjbzWdO_uVZvjFMFQ3hWzmvOWqXWYL7gidv_7TYPHVU-ighiseI85-/s1600/apple-icon.png" /></a></div> | |
<div> | |
<input accept="image/*" id="fileInput" multiple="" type="file" /> | |
<div id="dropArea">Drag & Drop images here</div> | |
</div> | |
<div id="imagePreview"></div> | |
<div id="output"> |
NewerOlder