Hi, can you download magnet links via php like normal mode?
I need to count how many times the file has been downloaded. I tried fopen()
, file_get_contents()
and header("Location: ")
, which also did not work:
Warning: fopen() expects at least 2 parameters, 1 given in C:\xampp\htdocs\gamepatch\download2.php on line 4
and also
Warning: file_get_contents(magnet:?xt=urn:btih:ed4fad95b4cb): failed to open stream: No such file or directory in C:\xampp\htdocs\gamepatch\download2.php on line 4
Attempt:
<?php
include "bd_connect.php";
$arquivo = $_GET["arquivo"];
header("Location: $arquivo");
?>