adodb 최신버전으로 변경

<? 를 <?php 로 변경
This commit is contained in:
2018-01-11 19:28:35 +09:00
parent feff33715f
commit 7b3b674dee
450 changed files with 19425 additions and 32248 deletions
+2 -2
View File
@@ -1,4 +1,4 @@
<?
<?php
// dbHost, dbId, dbPw, dbName, mailHost, mailPort, mailId, mailPw
$dbHost = $_POST['dbHost'];
$dbId = $_POST['dbId'];
@@ -49,7 +49,7 @@ foreach($querys as $query) {
// 파일로 DB 정보 저장
$file = @fopen(ROOT.W.D_SETTING.W.SET.PHP, 'w') or ErrorToScreen('설정 실패. 디렉토리의 퍼미션을 707로 주십시요');
@fwrite($file, "<?\n{$dbHost}\n{$dbId}\n{$dbPw}\n{$dbName}\n{$mailHost}\n{$mailPort}\n{$mailId}\n{$mailPw}\n{$mailAddr}\n?>\n") or ErrorToScreen('설정 실패. 디렉토리의 퍼미션을 707로 주십시요');
@fwrite($file, "<?php /*\n{$dbHost}\n{$dbId}\n{$dbPw}\n{$dbName}\n{$mailHost}\n{$mailPort}\n{$mailId}\n{$mailPw}\n{$mailAddr}\n */?>\n") or ErrorToScreen('설정 실패. 디렉토리의 퍼미션을 707로 주십시요');
@fclose($file);
@chmod(ROOT.W.D_SETTING.W.SET.PHP, 0604);