/*
========================================================
InfoTechBBS Version 2.0 (2001.1.8)
--------------------------------------------------------
ÇÁ·Î±×·¥¸í : deleteform.html
¹öÀü : 2.0
±â´É : °Ô½Ã¹°»èÁ¦¸¦ À§ÇÑ ÆûÃâ·Â
========================================================
*/
include "header_info.php";
include "cfg.html";
if($wmode==1){
if(!$HTTP_COOKIE_VARS[$adminid]){
echo ("
º»°Ô½ÃÆÇÀº °ü¸®ÀÚ¸¸ÀÌ »èÁ¦°¡ °¡´ÉÇÕ´Ï´Ù.
¸®½ºÆ®È¸éÀ¸·Î µ¹¾Æ°©´Ï´Ù.
");
echo ("");
exit;
}
}
//********°ü¸®ÀÚ ¿©ºÎ¸¦ È®ÀÎÇÏ°í °ü¸®ÀÚ°¡ ¾Æ´Ò°æ¿ì ºñ¹Ð¹øÈ£ È®ÀÎÇÏÁö ¸»°Í
if($HTTP_COOKIE_VARS[$adminid]) {
echo("
");
}else{
echo("
");
}
?>
onLoad="focusIt()">
//******** °Ô½ÃÆÇ »ó´Ü¿¡ ŸÀÌÆ² À̹ÌÁö¸¦ Ãâ·ÂÇÑ´Ù.
print_title_image($code);
if(!$LIST_TH_FILE){
$BG_CODE="";
}else{
$BG_CODE="BACKGROUND=" . "./icon/" . $LIST_TH_FILE . ".gif";
}
//******** µ¥ÀÌÅͺ£À̽º¿¡ ¿¬°áÇÑ´Ù.
include "dbconn_info.php";
//******** »èÁ¦ÇϰíÀÚ ÇÏ´Â ±ÛÀÇ ÀԷ°ªÀ» »Ì¾Æ³½´Ù.
$query = "SELECT fid,name,subject,email,homepage,thread,signdate,userfile FROM $code WHERE uid = $number";
$result = mysql_query($query,$dbconn);
if(!$result) {
error("QUERY_ERROR");
exit;
}
$my_fid = mysql_result($result,0,0);
$my_name = mysql_result($result,0,1);
$my_subject = mysql_result($result,0,2);
$my_email = mysql_result($result,0,3);
$my_homepage = mysql_result($result,0,4);
$my_thread = mysql_result($result,0,5);
$my_signdate = mysql_result($result,0,6);
$my_userfile = mysql_result($result,0,7);
//******** addslashes() ÇÔ¼ö·Î escapeµÈ Á¦¸ñÀÇ ¹®ÀÚ¿À» ¿ø»óº¹±Í½ÃŲ´Ù.
$my_subject = stripslashes($my_subject);
//******** °Ë»ö¹®ÀÚ¿À» ÀÎÄÚµùÇÑ´Ù.
$encoded_key = urlencode($key);
if(!$my_email) {
$my_email = " ";
}
if(!$my_homepage) {
$my_homepage = " ";
}
$my_signdate = date("y-m-d",$my_signdate);
if($my_userfile){
$file_ex=1;
}else{
$file_ex=0;
}
?>