单击MySql Table的特定行,以便它自动在PHP Web页面中创建具有该行数据的新文件

时间:2016-04-27 09:27:36

标签: php jquery mysqli

我只想点击一行,这样它就会自动创建一个包含该特定行数据的新文件,并且该文件也应该自动下载。请帮我这样做。

<html>
<head>
<title>Click on Particular Row fo MySql Table, then Create New File having data of that Row in PHP</title>
</head>
<body>
 <table  class="table table-striped table-hover" border="1" id="dataTable1" style="text-align: justify;margin-left:30px;">
          <tr class="success" style="border-bottom: solid;border-top: solid;">
                            <th>
                                I.D.
                            </th>
                            <th>
                             Date
                            </th>
                            <th>
                            Website
                              </th>
                            <th>
                                 E-Mail
                            </th>
                            <th>
                                Mobile&nbsp;Number(Head)
                            </th>                           
                            <th>
                            Courses
                            </th>
                                 <th>
                                File
                            </th>
                </tr>
                           <?php
                           while($row = mysqli_fetch_array($fetch))
                             {
                            ?>
                           <tr>
                               <td>
                                   <a href="Perticular.php?<?php echo $row['id']; ?>" target="_blank"><?php echo $row['id'];?></a> <!-- Want to Click on I.D. Such that Automatically Create New File having data of this whole Row -->
                               </td>
                               <td>
                                   <?php echo $row['date_Time'];?>
                               </td>                               
                               <td>
                                   <a href="<?php echo "http://".$row['website']; ?>" target="_blank"><?php echo $row['web_link'];?></a>  
                               </td>

                               <td>
                                  <?php echo $row['e_mail']; ?>
                               </td>

                               <td>
                                   <?php echo $row['mobile_number']; ?>
                               </td>
                               <td>
                                   <?php echo $row['courses_offer']; ?>
                               </td>

                               <td>
                                   <a href="uploaded/<?php echo $row['file_Attach'];?>" target="_blank">View File</a>
                               </td>
                           </tr>
                           <?php
                             }
                           ?>
                    </table>

</body>
</html>

1 个答案:

答案 0 :(得分:0)

hidden input中获取所需的信息,或者创建一个页面,其中包含行ID的$_GET值,运行查询并输出信息。

Onclick,使用hidden pop-up div调出iframe。该页面从$_GET获取id /值,如果需要则运行查询,file_put_contents($file, $data)以将数据输出到文本文件。有一个下载链接/图像来下载文件,指向刚刚创建的文件。