0. 데이터 입력
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 | <?php header( "Content-Type:text/html;charset=UTF-8" ); $config ->s_serv_url = 'woorimail.com' ; $config ->s_ssl = 'Y' ; $config ->s_ssl_port = '443' ; $config ->s_authkey = 'thisiswoorimailauthkey' ; $config ->s_domain = 'mydomain.com' ; $config ->s_type = 'test' ; $config ->s_mid = 'auth_woorimail' ; $config ->s_act = 'dispWwapimanagerStatusApi' ; $config ->s_callback = '' ; $s_serv_url = $config ->s_serv_url; if ( $config ->s_ssl == 'N' || ! $config ->s_ssl) { $s_ssl_port = '' ; } elseif ( $config ->s_ssl == 'Y' ) { $s_ssl_port = ':' . $config ->s_ssl_port; } $url = $s_ssl . $s_serv_url . $s_ssl_port . '/index.php' ; ?> |