| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <?php
- session_start();
- include('logo.html');
- include('menulist.html');
- include('configuration');
- include('search.html');
- $handle = sqlite3_open($db) or die("Could not open database");
- $query = "select * from search where module=\"".$_GET['module']."\"";
- $result = sqlite3_query($handle, $query) or die("Error in query: ".sqlite3_error($handle));
- $row = sqlite3_fetch_array($result);
- ?>
- <table align="center" bgcolor="lightblue" width="70%" border="0" cellpadding="3" cellspacing="1">
- <tr align="center" bgcolor="FFFFCC">
- <td width="50%">
- <?php
- if(file_exists($tar_dir . $_GET['module'].".tar"))
- echo '<a href='. $tar_dir . $_GET['module'] . '.tar>Download</a>';
- ?>
- <td>
- <?php
- if(file_exists($tar_dir . $_GET['module']."_with_deps.tar"))
- echo '<a href='. $tar_dir . $_GET['module'] . '_with_deps.tar>Download Dependencies</a>';
- ?>
- </td>
- </tr>
- </table>
- <table align="center" bgcolor="lightblue" width="70%" border="0" cellpadding="8" cellspacing="1">
- <tr align="left" bgcolor="FFFFCC">
- <td><h3>Module: </h3> <pre><?=$row['module'];?></pre> </td>
- </tr>
- <tr align="left" bgcolor="FFFFCC">
- <td><h3>Title: </h3> <pre><?=$row['title'];?> </pre></td>
- </tr>
-
- <tr align="left" bgcolor="FFFFCC">
- <td><h3>Author: </h3> <pre><a href=search.php?author=<?=$row['author'];?>><?=$row['author'];?></a></pre></td>
- </tr>
- <tr align="left" bgcolor="FFFFCC">
- <td><h3>Dependencies: </h3> <pre><?=$row['depends'];?></pre></td>
- </tr>
- <tr align="left" bgcolor="FFFFCC">
- <td><h3>Description: </h3> <pre><?=$row['desc'];?></pre></td>
- </tr>
- </table><hr>
- <?php
- function checkerror($status, $msg)
- {
- if($status != 0) {
- echo "<div align=\"center\">" . $msg . "Contact ccan admin. </div>";
- exit();
- }
- }
- ?>
|