네 indexNew.php에
<?php
include_once('./_common.php');
define('_INDEX_', true);
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
if(defined('G5_THEME_PATH')) {
require_once(G5_THEME_PATH.'/index.php');
return;
}
if (G5_IS_MOBILE) {
include_once(G5_MOBILE_PATH.'/index.php');
return;
}
include_once(G5_PATH.'/head.sub.php');
include_once('./lib/mailer.lib.php');
include_once(G5_LIB_PATH.'/latest.lib.php');
include_once(G5_LIB_PATH.'/outlogin.lib.php');
include_once(G5_LIB_PATH.'/poll.lib.php');
include_once(G5_LIB_PATH.'/visit.lib.php');
include_once(G5_LIB_PATH.'/connect.lib.php');
include_once(G5_LIB_PATH.'/popular.lib.php');
define('_INDEX_', true);
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
if ($mail) {
check_token();
$from_name = "$name";
$from_email = "$phone";
$email = explode(",", $mail);
$sub = <<<HEREDOC
이름 : $name <br>
연락처 : $phone<br>
내용 : $memo<br>
HEREDOC;
for ($i=0; $i<count($email); $i++)
mailer($from_name, $from_email, trim($email[$i]), "카페데코믹스 창업 문의", $sub);
echo("<script>window.alert('메일발송 완료 되었습니다.');</script>");
}
$token = get_token();
?>
이렇게 넣어져 있는데도 모바일 화면이 안나오네요 ㅜ