/var/www/(Del)tsolpv.com/2013/en/aboutus.php


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<?php require_once('../webadmin/configure.php');
$result0 mysql_query("SELECT * FROM home ");
$row0 mysql_fetch_array($result0,MYSQL_ASSOC);
$result mysql_query("SELECT * FROM sys_menu WHERE mpage = 'aboutus' ");
$row mysql_fetch_array($result,MYSQL_ASSOC);

$result1 mysql_query("SELECT * FROM aboutus WHERE aboid = ".safe_param($_GET['aboid'])." AND abopagemodule = 'aboutus' AND abostatus = '1' ORDER BY abosort ASC ");
if (
mysql_num_rows($result1) > 0){
    
$row1 mysql_fetch_array($result1,MYSQL_ASSOC);
} else {
    
header("Location: index.php");
}
?>
<!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" />
<meta http-equiv="X-UA-Compatible" content="IE=7" />
<title><?=$row1{'metatitleen'};?></title>
<meta name="keywords" content="<?=$row1{'metakeyworden'};?>" />
<meta name="description" content="<?=$row1{'metadescen'};?>" />
<link rel="stylesheet" type="text/css" href="../css/style.css" />

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
<script type="text/javascript" src="../js/jquery.cycle.all.js"></script>
<script type="text/javascript">
$(document).ready(function() {
    $('.banner').cycle({
        fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
    });
});
</script>

</head>
<body>
<div id="container">
   <!-- Header -->
   <?php require_once('header.php');?>
   <!-- Main Content -->
   <div id="body">
       <div id="body_content">
        <div id="submenu">
            <ul><?php // Left Menu
            
$result3 mysql_query("SELECT * FROM aboutus WHERE abostatus = '1' ORDER BY abosort ASC ");
            while (
$row3 mysql_fetch_array($result3,MYSQL_ASSOC)){
                echo 
"<li><a href='".$row3{'abopagemodule'}.".php?aboid=".$row3{'aboid'}."'>".$row3{'abotitleen'}."</a></li>";
            }
?>
            </ul>
        </div>

        <div id="maincontent">
            <?php if(!empty($row1{'abobanneren'})) { 
                echo 
'<div id="pagebanner"><a href="'.$row1{'abobannerlinken'}.'"><img src="../pagebanner/'.$row1{'abobanneren'}.'" width="670" /></a></div>'; }?>
            <div id="pagetitle" class="pagetitle"><?=$row1{'abotitleen'};?></div>
            <div id="path" class="path"><a href="index.php">Home</a> > <?=$row{'mtitleen'};?> > <?=$row1{'abotitleen'};?></div>
            <div id="pagecontent" class="pagecontent"><?=$row1{'abodescen'};?></div>
        </div>
        <div class="clear"></div>
    </div>
   </div>
   <!-- Footer -->
   <?php require_once('footer.php');?>
</div>
</body>
</html>