묻고답하기

http://www.vitwin.com/form/mail.htm

폼메일을 위와같이 하나 받아서 올려봤는데요. 글을 쓰고 전송하고 나서도

계속 글이 남아있네요...전송과 동시에 이걸 다시 자동으로 초기화 할수는 없을까요?

방법을 좀 알려주세요...

아래는 php 코드 입니다.
------------------------------------------------------------------------------------
<?

$todaydate=date('Y-m-d');

if(!$revperson){
   echo "<script>
         alert('받는분의 메일주소를 입력하세요');
         history.go(-1);
         </script>";
         }

if(!$sendperson_email){
   echo "<script>
         alert('보내는분의 메일주소를 입력하세요');
         history.go(-1);
         </script>";
         }

if(!$subject){
   echo "<script>
         alert('제목을 입력하세요');
         history.go(-1);
         </script>";
         }

if(!$comment){
   echo "<script>
         alert('내용을 입력하세요');
         history.go(-1);
         </script>";
         }

$comment2=nl2br($comment);

$comment1 ="
날짜 :$todaydate
보내는사람 :$sendperson
받는사람 :$revperson
제목 :$subject
내용 :$comment2 ";

   $result=mail("$revperson", "$subject", "$comment1", "From:$sendperson <$sendperson_email>");

   if(!$result){
   echo "<script>
         alert('메일이 전송에 문제가 있습니다');
         history.go(-1);
         </script>";
   }else{
   echo "<script>
         alert('메일이 정상적으로 처리되었습니다');
         history.go(-1);
         </script>";
   }
?>
------------------------------------------------------------------------------------

아래는 html 코드 입니다.
------------------------------------------------------------------------------------
<HTML>
<HEAD>
<TITLE>지나의 폼메일</TITLE>
<meta http-equiv="Content-Type" content="text/html; charset=euc-kr">
<STYLE type="text/css">
<!--
BODY,td,SELECT,DIV,form,center {font-family: 돋움;color:#CC6699;font-size:9pt;line-height:14pt}
P,blockquote,td,br {font-family:돋움;font-size:9pt;line-height:14pt}
input {font-family: 돋움;color:#CC6699;font-size:9pt;line-height:13pt;font-size:9pt;background:#FFF7F7;border:#EFAFC0 1px solid;}
textarea {font-family:돋움;color:#CC6699;font-size:9pt;line-height:13pt;font-size:9pt;background:#FFF7F7;scrolling:no;border:#EFAFC0 1px solid;}
.ad{border:#EFAFC0 1px solid;}
.adf{background-color:#FFF7F7;border:#EFAFC0 1px solid;}
.input2 {font-family:Verdana,돋움,굴림;font-size:7pt;color:#CC6699;line-height:5pt;height:12pt;background:#F1BAC9;border-bottom: #CC6699 1px solid; border-left: #FFF7F7 1px solid; border-right: #CC6699 1px solid; border-top: #FFF7F7 1px solid;}
.korea {font-family:돋움,굴림,Verdana;font-size:8pt}

BODY {background-color: ; background-image: url('003_bg.jpg');
background-repeat: no-repeat; background-attachment:fixed; background-position: 15% 55%}

A:link {color:#CC6699;text-decoration:none;}
A:visited {color:#CC6699;text-decoration:none;}
A:active {color:#EFAFC0;text-decoration:none;}
A:hover {color:#EFAFC0;text-decoration:none;}

BODY
{scrollbar-face-color: #FFFFFF; scrollbar-shadow-color: #EFAFC0;
scrollbar-highlight-color: #EFAFC0; scrollbar-3dlight-color: #FFFFFF;
scrollbar-darkshadow-color: #FFFFFF; scrollbar-track-color: #FFFFFF;
scrollbar-arrow-color: #EFAFC0}
-->
</STYLE>
</HEAD>
<BODY bgcolor="white">
<DIV align="center">
      
  <TABLE BORDER="0" cellpadding="0" cellspacing="0" align="center" width="300">
    <tr>
            <td><font color="#FFFFFF"> </font><form name="FIELDFORM" method="post" action="mail.php" >
        <!-- 아래의 멜주소는 반드시 여러분의 것으로 바꾸세요.-->              
       <input type=hidden name="revperson" value="caliph@hanmail.net" maxlength="16" size="25" class="ad" onBlur=this.className='ad' onFocus=this.className='adf'>
        +++ 쥔장에게 메일 보내기 +++</td>
          </tr>
          <tr>
            
      <td height="23">
        <input type="text" name="sendperson" maxlength="16" size="16" class="ad" onBlur=this.className='ad' onFocus=this.className='adf' style="filter: Alpha(Opacity=65);">
        이름 </td>
          </tr>
          <tr>
            
      <td height="23">
        <input type="text" name="sendperson_email" maxlength="45" SIZE="22" CLASS="ad" onBlur=this.className='ad' onFocus=this.className='adf' style="filter: Alpha(Opacity=65);">
        멜주소</td>
          </tr>
          <tr>
            
      <td height="23">
        <input type="text" name="subject" value="안녕하세요...  ^^" maxlength="50" size="28" CLASS="ad" onBlur=this.className='ad' onFocus=this.className='adf' style="filter: Alpha(Opacity=65);">
        제목<b> </b>
        <input type="checkbox" name="ishtml" value="1">
        <font class="korea">html</font></td>
          </tr>
          <tr>
            
      <td height="153"> <font face="돋움, 굴림" size="2" color="#FFFFFF">
        <textarea name="comment" rows="10" cols="40" CLASS=ad onBlur=this.className='ad' onFocus=this.className='adf' style="filter: Alpha(Opacity=65);"></TEXTAREA>
              </font></td>
          </tr>
          <tr>
            <td align="right">
              <div align="center">
<input type="submit" name="메일보내기" value="Send Mail" class="input2">
                
          <input type="reset" name="Reset" value="Reset" class="input2">
                 </div>
            </td>
          </tr>
        </TABLE>
</DIV>
</FORM>
<div align="center"><font face="Verdana, Arial, Helvetica, sans-serif" size="1">----->
  skin by <a href="http://zina.zlcom.com" target="_blank">Zina</a> </font> </div>
</BODY>
</HTML>
글쓴이 제목 최종 글
XE 공지 글 쓰기,삭제 운영방식 변경 공지 [16] 2019.03.05 by 남기남
김재수 본문에 글자색이 최근게시물과 상관없이 모두 회색으로 됩니당 ㅠ.ㅠ [1] 2007.08.10
hiroto 이건 무슨 소스인가요? [1] 2007.08.10
홍지호 현재 접속자수 알려주는것...  
lemonT 컴퓨터에 대해서 잘 아시는분!! [2] 2007.08.10
다르마라쟈 Mysql DB 관련 질문입니다.... 초짜.. ㅡ.ㅡ [1] 2007.08.10
김상은 나모 프레임셋에 대한 질문..ㅠ_ㅠ [1] 2007.08.10
안지원 저... -_-.;; 밑에랑 같은 사람인데요.. 제발.. 도와주세요. [3] 2007.08.10
omhya 이미지를 불펌으로 하고싶은데요- [2] 2007.08.10
김용호 플래쉬 폰트의 속성화에 관한 질문 [4] 2007.08.10
최성순 외부로그인을 달았는데...  
코코푸르나 헬푸미~~폰트가 이상하게 깨져서 나오는데요...ㅠㅜ [2] 2007.08.10
yunjinho [질문] 서브메뉴에 관한 질문  
미스김♡ 이렇게 할려면 어떡해 하나요? [4] 2007.08.10
강현진 외부로그인 관련 소스(?)  
김유미 저의 제로보드 스킨 주소를 어떻게 알아내져? [1] 2007.08.10
김진아 도와 주세요~!!ㅠ.ㅠ  
이현우 제로보드 구입과 관련 [1] 2007.08.10
안지원 저는 제 컴퓨터를 서버로 쓸려다가.;.. [1] 2007.08.10
김동건 고정 IP에 의한 문제때문입니다만 _ _;; [1] 2007.08.10
임은미 제로카운터를 옮겨(?)왔는데요...ㅠㅠ [1] 2007.08.10
이병관 제로보드는 oracle 지원안되나요? [1] 2007.08.10
박윤희 공지사항을 어떻게 넣죠???  
처처 프리미어 강좌 잘된곳은 어디에있을까요.^^? [1] 2007.08.10
soo 드림위버 MX에서...  
Eccen 답변입니다. [1] 2007.08.10
이인종 무단링크방지, 링크주소 가리기..고급 기술없나요..? [1] 2007.08.10
박봉수 제로보드 DB백업후 복구하는 방법 좀 상세히 알려주세요. (왕~ 초보)  
심지훈 웹프로그래머가 되기위해선 무엇을 준비해야하나요?? 선배님들의 고언부탁드립니다.. [2] 2007.08.10
왕초보 혹시 뽀림닷컴이 어딘지 아나여??  
이인철 죄송한데요....