WordPress හරි PhP

eshan91

Member
Apr 20, 2010
543
24
0
colombo
කව්රු හරි දන්නවද මෙන්න මේ විදිහට image එකක් download කරගන්න code එකක් ලියන්න විදිහ WordPress වලින් හරි PhP වලින් :sorry::sorry::sorry:

http://office.microsoft.com/en-us/images/

44316745.jpg
 

sanoka

Well-known member
  • Dec 6, 2007
    5,147
    1,233
    113
    <?php
    //header("Location:browser.php"); this is to re-direct to a new page
    $file = "johnny-english.jpg";
    header("Content-Description : File Transfer");
    header("Content-Type : image/jpeg");
    header("Content-Disposition : attachment;filename = $file");
    header("Content-Transfer-Encoding: binary");
    readfile($file);
    ?>
     

    eshan91

    Member
    Apr 20, 2010
    543
    24
    0
    colombo
    <?php
    //header("Location:browser.php"); this is to re-direct to a new page
    $file = "johnny-english.jpg";
    header("Content-Description : File Transfer");
    header("Content-Type : image/jpeg");
    header("Content-Disposition : attachment;filename = $file");
    header("Content-Transfer-Encoding: binary");
    readfile($file);
    ?>
    thanx