<?php
//||_____________________RadhikaGB_____________________||//
//||---------------------------------------------------||//
//||Page ID : content.php ||//
//||Build ID : 2505100832 ||//
//||Support : http://softacme.com/radhikagb ||//
//|| Jai Shri RADHA RANI... ||//
//||---------------------------------------------------||//
?>
<?php
if(file_exists("connect.php")){
require_once("connect.php");
}else{
header("location: ../self-help.php?error=1");
}
if($RadhikaGB_install != okay){
header('Location: self-help.php?error=3');
}
//Grab Page outlook setting from database
$settd = mysql_query("SELECT * FROM `settings`");
while($sett = mysql_fetch_array($settd))
$data[$sett['id']] = $sett['code'];
//Update counter value//
$counter_value=$data[visits];
$counter_value++;
mysql_query("UPDATE `settings` SET `code` = '$counter_value' WHERE `id` = 'visits'");
if(file_exists("lang/$data[language].php")){
require_once("lang/$data[language].php");
}else{
echo"Unable to load language file, Please check that you have <b>language file</b> in your <b>lang </b> folder.";
}
?>