1

I have got an ebooks table in the database where path of pdf is defined.What I want is, when a user clicks on the download button, pdf get download.But the download button is not working and I'm also not getting any error from Php.Please help! Thank you.

Code:

<div id="data">
        <?php 
        if (isset($_POST['submit'])) {

                        $title  = $_POST['title'];
                        $name  = $_POST['name'];
                        $count = 1;

                        $query = "SELECT * FROM ebooks WHERE $title LIKE '%".$name."%'";
                        $display =  $obj->run_query($query);
        ?>

        <div class="table-responsive">
            <table class="table table-bordered">
                <thead>
                    <tr align="center">
                        <td>No.</td>
                        <td>Title</td>
                        <td>Author</td>
                        <td>Publication</td>
                        <td>Status</td>
                    </tr>
                </thead>
                <tbody>
                    <?php

                        foreach ($display as $key) { ?>

                    <tr align="center">
                        <td><?php echo $count++;?></td>
                        <td><?php echo $key['ebook_title'];?></td>
                        <td><?php echo $key['ebook_author'];?></td>
                        <td><?php echo $key['ebook_publication'];?></td>
                        <td><a style="color:white;" href="/admin/ebooks/<?php echo $key['ebook_url'];?>" class="btn btn-round btn-primary">Download</a></td>
                    </tr>
                    <?php } ?>

                </tbody>
            </table>
        </div>

        <?php } ?>
    </div>
</div>
Aisha Salman
  • 776
  • 4
  • 12
  • 21

1 Answers1

1

You have to add download before ending of anchor tag try this :

<a style="color:white;" href="/admin/ebooks/<?php echo $key['ebook_url'];?>" class="btn btn-round btn-primary" download>Download</a>
kunicmarko20
  • 2,095
  • 2
  • 15
  • 25