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
|
<?php require_once('../webadmin/configure.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" /> <?php //SEO $result1 = mysql_query("SELECT * FROM seo WHERE pagepath = 'Home' "); $row1 = mysql_fetch_array($result1,MYSQL_ASSOC); ?> <title><?=$row1{'seotitle'};?></title> <meta name="keywords" content="<?=$row1{'seokey'};?>"> <meta name="description" content="<?=$row1{'seodesc'};?>" /> <meta http-equiv="X-UA-Compatible" content="IE=7" /> <style type="text/css"> <!-- body { margin: 0px; width: 100%; height: 100%; margin-left: auto; margin-right: auto; background-color:#FFFFFF; position: relative; scrollbar-base-color: #666666; scrollbar-arrow-color: #000000; scrollbar-3dlight-color: #FCFCFC; scrollbar-darkshadow-color: #333333; scrollbar-face-color: #E8E8E8; scrollbar-highlight-color: #CCCCCC; scrollbar-shadow-color: #CCCCCC; scrollbar-track-color: #F2F2F2; } .aboutusmore { font-family: Arial; font-size: 12px; color: #000000; text-decoration: none; padding:10px; background-color:#FFFFFF; } .title { font-family: "Times New Roman"; font-size: 24px; color: #DEB408; text-decoration: none; font-style:italic; } --> </style> </head> <body> <?php $result1 = mysql_query("SELECT * FROM home ORDER BY homeid ASC "); $row1 = mysql_fetch_array($result1,MYSQL_ASSOC); ?> <table width="720" border="0" align="center" cellpadding="0" cellspacing="0" > <tr> <td width="720" align="left" valign="top" class="aboutusmore"><?=$row1{'homedesc'};?></td> </tr> </table>
</body> </html> <?php mysql_close($dbh);?>
|