string 내의 $ 호출들 일괄 변환.

This commit is contained in:
2018-01-16 03:56:50 +09:00
parent c73a3bcf95
commit 28eaf7b0d7
119 changed files with 6485 additions and 6479 deletions
+3 -3
View File
@@ -17,7 +17,7 @@ $connect = dbconn();
<body oncontextmenu='return false'>
<?php
$query = "select no,nation,skin from general where user_id='$_SESSION[p_id]'";
$query = "select no,nation,skin from general where user_id='$_SESSION['p_id']'";
$result = MYDB_query($query, $connect) or Error(__LINE__.MYDB_error($connect),"");
$me = MYDB_fetch_array($result);
@@ -26,7 +26,7 @@ $me = MYDB_fetch_array($result);
<tr>
<td valign=top width=500>
전체 메세지(최고75자)<br>
<?php MsgFile($me[skin], 1); ?>
<?php MsgFile($me['skin'], 1); ?>
<br>
개인 메세지(최고75자)<br>
<?php MsgMe($connect, 2); ?>
@@ -34,7 +34,7 @@ $me = MYDB_fetch_array($result);
<td valign=top width=500>
<?php MsgDip($connect, 4); ?>
국가 메세지(최고75자)<br>
<?php MsgFile($me[skin], 3, $me[nation]); ?>
<?php MsgFile($me['skin'], 3, $me['nation']); ?>
</td>
</tr>
</table>