|
Server : Apache/2.4.62 System : FreeBSD fbsdweb2.web.rcn.net 14.1-RELEASE FreeBSD 14.1-RELEASE releng/14.1-n267679-10e31f0946d8 GENERIC amd64 User : www ( 80) PHP Version : 8.3.8 Disable Function : NONE Directory : /domains/klengineers/ |
Upload File : |
<?php
include('config/config.php');
$id=$_GET['id'];
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="css/style.css" />
<title>Kallen & Lemelson</title>
<link href="css/global.css" rel="stylesheet" type="text/css" />
<link href="css/grid.css" rel="stylesheet" type="text/css" />
<link href="css/menu.css" rel="stylesheet" type="text/css" media="all">
<link rel="shortcut icon" href="favicon.ico">
<link rel="icon" type="image/ico" href="/favicon.ico">
<script language="javascript" type="text/javascript" src="includes/jquery.js"></script>
<script language="javascript" type="text/javascript" src="includes/superfish.js"></script>
<script language="javascript" type="text/javascript" src="includes/dropdowns.js"></script>
<script language="javascript" type="text/javascript" src="includes/hoverIntent.js"></script>
<!--<script language="JavaScript" type="text/JavaScript" src="/includes/swfobject.js"></script>-->
<script language="JavaScript" type="text/JavaScript" src="includes/jquery.cycle.all.min.js"></script>
</head>
<body>
<div id="wrapper">
<div id="site-home">
<div class="div-top">
<div class="logo" style="margin:36px 0 45px 0"><a href="index.php"><img src="images/logo.png" width="348" height="49" border="0" /></a></div>
<?php
include_once('menu.php');
?>
</div>
<div class="content-part">
<?php
$query="select * from homecontent where id='$id'";
$ans=mysql_query($query);
$row=mysql_fetch_array($ans);
$querycontent="select * from firm where homeid='$id'";
$anscontent=mysql_query($querycontent);
$rowcontent=mysql_fetch_array($anscontent);
?>
<div class="text-div" style="width:961px;">
<div class="ab-img" style="width:400px; height:"><img src="uploads/<?php echo $rowcontent['h_imag'];?>" /></div>
<div class="detail" style="float:right; width:550px;">
<h2><?php echo stripslashes($row['h_name']);?></h2>
<p style="line-height:14px;"><?php echo stripslashes($rowcontent['h_des']);?>
</p>
</div>
</div>
</div>
</div>
<?php
include_once('footer.php');
?>
<div class="clear"></div>
</div>
</body>
</html>