<?
session_start();
include("../data/connect.php");
include("../data/_uconfig.php");
include("../_class/lang.php");
include("../_class/lang_".$iscon["getlang"].".php");
include("../_class/class.global.php");
if(isset($_GET["cid"])) $cid=$_GET["cid"]; else $cid="";
if($cid){
$infoboard = new global_infoboard();
$infoboard->checksess();
$infoboard->isconnect();
$iscon["gname"] = "";
if($infoboard->gname) $iscon["gname"] = $infoboard->gname;
$msg = $infoboard->checksel($cid);
echo $msg;
$infoboard->isclose();
}
?>