웹마스터 팁

delete.php3 파일
1 <?
2   include "lib.php3";
3   include "dbconn.php3";
4   include "head.php3";
5 ?>
6
7 <form type=post action=delete_ok.php3>
8 <input type=hidden name=no value='<? echo $no; ?>'>
9
10 <br><br><br>
11
12 <div align=center>
13
14 <? echo $writer; ?> 님의 글 삭제
15
16 <br><br>
17
18 비밀번호 입력 : <input type=password name=password size=20 maxlength=20>
19
20 <input type=submit value='삭제'>
21
22 </form>
23
24 <br><br>
25
26 <a href=list.php3>리스트 보기</a>
27
28 </div>
29
30 <?
31   include "foot.html";
32 ?>

내용설명

이 파일에서는 비밀번호를 입력받아 delete_ok.php3 파일로 넘겨줍니다.

쉽져? -_-;;;