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
|
<?php //error_reporting(E_ALL); if(!array_key_exists('pg', $_GET)) { header("location:index.php"); exit(); }
require_once("../conf_/siteconf_.php"); require_once("../admin/dbconn.php"); require_once("func/util.php");
if($dbConn) { $ra_page= $db->Select($TBL_PAGES, null, array("ID"), array($_GET['id'])); if(count($ra_page)) $page = $ra_page[0]->ContentRO;
$inPageCalls = getContentFct($page); $retFctCalls = processContentFct($inPageCalls, $db); $page = updatePageData($retFctCalls, $page); }
$title .=" - ".$ra_page[0]->NameRO;
?> <td valign="top" style="border-right: 1px solid #5D5C5C" width="589"> <table cellpadding="0" cellspacing="0" border="0" summary=""> <tr> <td bgcolor="#252525" height="23" width="589" class="adr2"><a href="index.php" class="adr2">Home</a> » <?= $ra_page[0]->NameRO ?></td> </tr> <tr> <td style="padding:0px;" class="no-padding"> <?= $page; ?> </td> </tr> </table> </td>
|