PK

ADDRLIN : /home/anibklip/ldhcgewc.org/
FLL :
Current File : /home/anibklip/ldhcgewc.org/event_details.php

<?php
$query = "select * from articles where typ='$_GET[typ]' and article_id='$_GET[id]' ";
//echo "$query<br />";
$query = mysql_query($query) or die (mysql_error());
if($row = mysql_fetch_array($query)){}
?>

<section class="page-header">
	<div class="container">		
		<h1><?php echo $row[titl]?></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><?php echo $row[titl]?></span>
	</div><!--/ .breadcrumbs-->
	<!-- - - - - - - - - end Breadcrumbs - - - - - - - - - - - -->	

	<div class="eight1 columns">
		<h6><a href="#"><strong><?php echo $row[titl]?></strong></a></h6>							
		
		<?php 
		if($row[img]){
			?>
			<div class="bordered alignleft">
				<figure class="add-border">
					<a class="single-image" href="#"><img src="site_data/images/<?php echo $row[img]?>" width="250" /></a>
				</figure>
			</div><!--/ .bordered-->
			<?php
		}
		?>

		<div>
			Date: <strong><?php echo date("d M Y",strtotime($row[date]))?></strong>
		</div>
		<p>
			<?php echo $row[descp]?>
		</p>
		<p><?php echo $cont[body]?></p>
	</div><!--/ .eight .columns-->

</section><!--/ .main -->


PK 99