i am using zenphot and webalbum for a wallpaper site i have a link that says download but it opends the image in a new page i want it to download the file not open in a new page can you give me the code thanks in advange
<?php header('Content-type: application/octet-stream'); header('Content-Disposition: attachment; filename="filename.ext"'); readfile('filename.ext'); ?> you can change filename.ext to variables