최초등록

This commit is contained in:
sp1000je
2026-02-23 10:01:00 +09:00
commit 7bc9767bf4
3120 changed files with 198447 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
<!--#include virtual = "/common/lib/dbcon.asp" -->
<!--#include virtual = "/common/lib/func.asp" -->
<!--#include file = "inc_auth_code.asp" -->
<%
auth_code_num = InputValue( request("auth_code_num") )
auth_num = InputValue( request("auth_num") )
If auth_code_num = "" Or auth_num = "" Then
Response.write "auth_code error"
Response.end
End if
If auth_num = auth_code_arr( CInt(auth_code_num) ) Then
Response.write "ok"
Else
Response.write "no"
End if
%>