Skip to content

Instantly share code, notes, and snippets.

View JagdeepDevgun's full-sized avatar
🏠
Working from home

Jagdeep Singh JagdeepDevgun

🏠
Working from home
View GitHub Profile
@JagdeepDevgun
JagdeepDevgun / data.php
Created May 3, 2025 16:32 — forked from SH20RAJ/data.php
Terabox Downloader PHP Script
<?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();