Results 1 to 2 of 2

Thread: adding table

  1. #1
    Join Date
    Sep 2007
    Posts
    110
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default adding table

    how do i add a table to the following script? so that each link is in a row.

    PHP Code:
    <?
    if(isset($_GET['id']))
    {
    include 
    'config.php';
    include 
    'opendb.php';

    $id $_GET['id'];
    $query "SELECT name, type, size, content FROM upload WHERE id = '$id'";
    $result mysql_query($query) or die('Error, query failed');
    list(
    $name$type$size$content) = mysql_fetch_array($result);

    header("Content-Disposition: attachment; filename=$name");
    header("Content-length: $size");
    header("Content-type: $type");
    echo 
    $content;

    include 
    'closedb.php';
    exit;
    }

    ?>
    <html>
    <head>
    <title>Download File From MySQL</title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    </head>

    <body>
    <?
    include 'config.php';
    include 
    'opendb.php';

    $query "SELECT id, name FROM upload";
    $result mysql_query($query) or die('Error, query failed');
    if(
    mysql_num_rows($result) == 0)
    {
    echo 
    "Database is empty <br>";
    }
    else
    {
    while(list(
    $id$name) = mysql_fetch_array($result))
    {
    ?>
    <a href="download.php?id=<?=$id;?>"><?=$name;?></a> <br>

    <?
    }
    }
    include 
    'closedb.php';
    ?>
    </body>
    </html>

  2. #2
    Join Date
    Sep 2006
    Location
    St. George, UT
    Posts
    2,769
    Thanks
    3
    Thanked 157 Times in 155 Posts

    Default

    Code:
    <?
    if(isset($_GET['id']))
    {
    include 'config.php';
    include 'opendb.php';
    
    $id = $_GET['id'];
    $query = "SELECT name, type, size, content FROM upload WHERE id = '$id'";
    $result = mysql_query($query) or die('Error, query failed');
    list($name, $type, $size, $content) = mysql_fetch_array($result);
    
    header("Content-Disposition: attachment; filename=$name");
    header("Content-length: $size");
    header("Content-type: $type");
    echo $content;
    
    include 'closedb.php';
    exit;
    }
    
    ?>
    <html>
    <head>
    <title>Download File From MySQL</title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    </head>
    
    <body>
    <?
    include 'config.php';
    include 'opendb.php';
    
    $query = "SELECT id, name FROM upload";
    $result = mysql_query($query) or die('Error, query failed');
    if(mysql_num_rows($result) == 0)
    {
    echo "Database is empty <br>";
    }
    else
    {
    ?>
     <!--Table Goes Here-->
    <table>
    
    <?php
    while(list($id, $name) = mysql_fetch_array($result))
    {
    ?>
     <tr>
      <td><a href="download.php?id=<?=$id;?>"><?=$name;?></a></td>
     </tr>
    
    <?php
    }
    ?>
    
    <!--End Table-->
    </table>
    
    <?php
    }
    include 'closedb.php';
    ?>
    </body>
    </html>
    Hope this helps.
    "Computer games don't affect kids; I mean if Pac-Man affected us as kids, we'd all be running around in darkened rooms, munching magic pills and listening to repetitive electronic music." - Kristian Wilson, Nintendo, Inc, 1989
    TheUnlimitedHost | The Testing Site | Southern Utah Web Hosting and Design

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •