نحوه نوشتن کد دانلود

jalaladdin

Active Member
برای سایتم ،قسمت دانلود کتاب گذاشتم من میخوام کاربرانی که عضو سایت هستند یعنی لاگین کردند وارد سایت شدند بتوانند کتابها را دانلود کنند برای این مورد چگونه باید کد phpبنویسم
 

P.H.P

Member
سلام

وقتی کاربر login کرد لینک دانلود رو طوری قرار میدی که یه session ایجاد کنه و بتونه فایل رو دریافت کنه (مسیر اصلی نباید مشخص بشه و permission فولدر فایل باید تغییر کنه)



موفق
 

jalaladdin

Active Member
برای قسمت download.phpکد را بدین صورت تغییر دادم

PHP:
<?php

session_start();
$file = $_GET['file'];
header("Content-type: application/pdf");
header("Content-Disposition: attachment; filename=". $file);
readfile($file);
?>


PHP:
 <?php

if(isset($_SESSION['username']))
{
    
    echo $_SESSION['username']." خوش آمدی";
    printf('<form action="logout.php" method="post" class="   dir">
        <br/>
printf('    
  <p align="center">
<table border="1">
    
        <tbody><tr>
            <td>
            <p align="center"><strong>ردیف</strong></p>
            </td>
            <td>
            <p align="center"><strong>نام کتاب</strong></p>
            </td>
            <td>
            <p align="center"><strong>نویسنده</strong></p>
            </td>
            <td><strong>زبان</strong></td>
            <td><strong>فرمت</strong></td>
            <td>
            <p align="center"><strong>حجم</strong></p>
            </td>
            <td>
            <p align="center"><strong>دریافت</strong></p>
            </td>
        </tr>
            <td>
            <div align="center"><font size="2"><font color="#000000" face="Tahoma"><font face="Tahoma">
            <div align="center"><font size="2">1</font></font></font></div>
            </font></font></font></div>
            </td>
            <td>
            <div align="center"><font size="2"><font color="#000000" face="Tahoma"><font face="Tahoma">آموزشflash</font></font></font></div>
            </td>
            <td>
            <div align="center"><font size="2">مولاناپور</font></div>
            </td>
            <td><font size="2"><font size="2">
            <div align="center">انگلیسی</div>
            </font></font></td>
           <td><font size="2"><font size="2">
            <div align="center">pdf</div>
            </font></font></td>
            
           <td><font size="2"><font size="2">
            <div align="center">3.28MB</div>
            </font></font></td>
             <td>
              <div align="center"><font size="2"><strong><a linkindex="158" href="#">Download</a></strong></font></div>
            </td>
        </tr>
    <tr>
     <td>
            <div align="center"><font size="2"><font color="#000000" face="Tahoma"><font face="Tahoma">
            <div align="center"><font size="2">2</font></font></font></div>
            </font></font></font></div>
            </td>
            <td>
            <div align="center"><font size="2"><font color="#000000" face="Tahoma"><font face="Tahoma">آموزشphp</font></font></font></div>
            </td>
            <td>
            <div align="center"><font size="2">بشیری</font></div>
            </td>
            <td><font size="2"><font size="2">
            <div align="center">فارسی</div>
            </font></font></td>
           <td><font size="2"><font size="2">
            <div align="center">pdf</div>
            </font></font></td>
            
           <td><font size="2"><font size="2">
            <div align="center">8.28MB</div>
            </font></font></td>
             <td>
              <div align="center"><font size="2"><strong><a linkindex="158" href="#">Download</a></strong></font></div>
            </td>
    </tr>
</tbody></table>
                            
</div></table>


');        
        
       <div align="center"> <input type="submit" value="خروج" class="button" /></div></form>'); 
}
else
{
    echo"برای دانلود کتاب لطفا در سایت ثبت نام کنید";
   printf('<form action="register.php" method="post" class=" " >
        
        
 
        </form>');
}

?>
حالا وقتی روی تب دانلود کتاب کلیک میکنم یک فایل دانلود میشه چگونه این کد را تغیبر دهم تا فایلهای که درون پوشه pdfریختم دانلود بشه
 

جدیدترین ارسال ها

بالا