1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
<?
if(!$id){ echo(" <tr> <td width='25'> </td> <td><img src='../../manage/icon.gif' width='11' height='9'> </td> <td width='25'> </td> </tr> ");
} else if(!$row[cus_WebID]){
echo(" <tr> <td width='25'> </td> <td><img src='icon.gif' width='11' height='9'> <span class='line'>°Ë»öÇϽоÆÀ̵ð [ $id ]Àº µî·ÏµÇÁö ¾ÊÀº ¾ÆÀ̵ðÀÔ´Ï´Ù.<br> <font color='#FFFFFF'></font> </span></td> <td width='25'> </td> </tr>
"); }else{ $add = $row[cus_WebID]; $ccode = $row[cus_code]; echo(" <FORM METHOD=POST name='find_code'> <tr> <td width='25'> </td> <td><img src='icon.gif' width='11' height='9'> <span class='line'>°Ë»öÇϽоÆÀ̵ð [ $id ]´Â µî·ÏµÈ ¾ÆÀ̵ðÀÔ´Ï´Ù.<br> <font color='#FF3366'>$id</font> ÀÌ ¾ÆÀ̵𸦠»ç¿ëÇϽðڽÀ´Ï±î? <input type='hidden' name='addf' value='$add'> <input type='hidden' name='codef' value='$ccode'> <input type='text' name='sacode' value='$code'> <input type='button' value=' Yes ' style='cursor:hand' onclick=\"return_post1();\"> <? echo('$code'); ?> </span></td> <td width='25'> </td> </tr> </form>
");
} ?>
|