require_once("includes/host_conf.php");
$sql = "select * from cms_content where content_id=1";
$result = $DB->query($sql);
$num = $DB->num_rows($result);
if ($row=$DB->fetch_assoc($result)) {
$tc_id = $row['content_id'];
$tc_type = $row['content_name'];
$tc_content = $row['content'];
}
echo "$tc_content";
?>
