$id_url = getParamUrl('id', 'GET', 0);
if ($id_url==20 || $id_url==29 || $id_url==34){
?>
}
$sql = "select id, title, title_en, spot, spot_en, content, content_en from content where parent_category_id = ".$id_url." and status = 1";
$result = mysql_query ($sql, $connection);
$i=0;
$contentAll = "";
while ($row = mysql_fetch_assoc($result)){
$i++;
$id = $row["id"];
$title = $row["title"];
$title_en = $row["title_en"];
$spot = $row["spot"];
$spot_en = $row["spot_en"];
$content = $row["content"];
$content_en = $row["content_en"];
if ($lng=="EN"){
$title = $title_en;
$spot = $spot_en;
$content = $content_en;
}
$contentAll .= "
echo $contentAll; ?>
";
$contentAll .= "
";
?>

