
PK 
<section class="page-header">
<div class="container">
<h1>Downloads</h1>
</div><!--/ .container-->
</section><!--/ .page-header-->
<!-- - - - - - - - - - - - - - Main - - - - - - - - - - - - - - - - -->
<section class="main container sbr clearfix">
<!-- - - - - - - - - - Breadcrumbs - - - - - - - - - - - - -->
<div class="breadcrumbs">
<a title="Home" href="index.php">Home</a>
<span>Downloads</span>
</div><!--/ .breadcrumbs-->
<!-- - - - - - - - - end Breadcrumbs - - - - - - - - - - - -->
<!-- <div class="bordered">
<figure class="add-border">
<img src="images/temp/full-width.jpg" alt="" />
</figure>
</div> --> <!--/ .bordered-->
<section id="content" class="twelwe columns">
<?php
$query = "select * from downloads order by down_id DESC";
//echo "$query<br />";
$query = mysql_query($query) or die (mysql_error());
while($row = mysql_fetch_array($query)){
?>
<article class="entry event">
<div class="entry-body1">
<div class="entry-title">
<h2 class="title" style="margin-bottom: 6px;"><?php echo $row[titl]?></h2>
</div><!--/ .entry-title-->
<p><?php echo $row[descp]?></p>
<a href="site_data/downloads/<?php echo $row[file_name];?>" class="button default small">Download</a>
</div><!--/ .entry-body -->
</article><!--/ .entry-->
<?php
}
?>
</section>
</section><!--/ .main -->


PK 99