I have stored QR Code image as data in my database and I use this example link to download it:
http://example.com/module/index.php?QRCodeFile=1&fileID=1
Now, I am trying to download this picture inside a folder to use it to create a pdf later.
My problem is when I am using this code to download the picture in a folder:
$url = 'http://example.com/module/index.php?QRCodeFile=1&fileID=1';
$img = 'assets/temp/qr.png';
file_put_contents($img, file_get_contents($url));
The file downloads but when every I try to open I get this message "We can't open this file."