conf에 return hint 추가

메시지 전송 준비
This commit is contained in:
2018-01-21 06:08:39 +09:00
parent 60e7ee5c38
commit 47d5a07a81
8 changed files with 462 additions and 317 deletions
+6 -6
View File
@@ -1,6 +1,6 @@
<?php
include "lib.php";
include "func.php";
require_once("lib.php");
require_once("func_message.php");
//로그인 검사
CheckLogin(1);
$connect = dbconn();
@@ -26,15 +26,15 @@ $me = MYDB_fetch_array($result);
<tr>
<td valign=top width=500>
전체 메세지(최고75자)<br>
<?php MsgFile($me['skin'], 1); ?>
<?=MsgFile($me['skin'], 1)?>
<br>
개인 메세지(최고75자)<br>
<?php MsgMe($connect, 2); ?>
<?=MsgMe($connect, 2)?>
</td>
<td valign=top width=500>
<?php MsgDip($connect, 4); ?>
<?=MsgDip($connect, 4)?>
국가 메세지(최고75자)<br>
<?php MsgFile($me['skin'], 3, $me['nation']); ?>
<?=MsgFile($me['skin'], 3, $me['nation'])?>
</td>
</tr>
</table>