dream_php_test01.php 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. <?php
  2. $reqdate = date("YmdHis");
  3. $clntReqNum = $reqdate.rand(100000,999999);
  4. ?>
  5. <html>
  6. <head>
  7. <title>본인인증서비스 테스트</title>
  8. <meta http-equiv="Content-Type" content="text/html; charset=euc-kr">
  9. <style>
  10. <!--
  11. body,p,ol,ul,td
  12. {
  13. font-family: 굴림;
  14. font-size: 12px;
  15. }
  16. a:link { size:9px;color:#000000;text-decoration: none; line-height: 12px}
  17. a:visited { size:9px;color:#555555;text-decoration: none; line-height: 12px}
  18. a:hover { color:#ff9900;text-decoration: none; line-height: 12px}
  19. .style1 {
  20. color: #6b902a;
  21. font-weight: bold;
  22. }
  23. .style2 {
  24. color: #666666
  25. }
  26. .style3 {
  27. color: #3b5d00;
  28. font-weight: bold;
  29. }
  30. -->
  31. </style>
  32. </head>
  33. <body bgcolor="#FFFFFF" topmargin=0 leftmargin=0 marginheight=0 marginwidth=0>
  34. <center>
  35. <br><br><br>
  36. <span class="style1">본인인증서비스 테스트</span><br>
  37. <form name="reqForm" method="post" action="./dream_php_test02.php">
  38. <table cellpadding=1 cellspacing=1>
  39. <tr>
  40. <td align=center>회원사ID</td>
  41. <td align=left><input type="text" name="cpid" size='41' maxlength ='10' value = "jenesisfin"></td>
  42. </tr>
  43. <tr>
  44. <td align=center>URL코드</td>
  45. <td align=left><input type="text" name="serviceCode" size='41' maxlength ='6' value=""></td>
  46. </tr>
  47. <tr>
  48. <td align=center>요청번호</td>
  49. <td align=left><input type="text" name="clntReqNum" size='41' maxlength ='15' value="<?php echo $clntReqNum ?>"></td>
  50. </tr>
  51. <tr>
  52. <td align=center>요청일시</td>
  53. <!-- 현재시각 세팅(YYYYMMDDHI24MISS) -->
  54. <td align=left><input type="text" name="reqdate" size="41" maxlength ='12' value="<?php echo $reqdate ?>"></td>
  55. </tr>
  56. <td align=center>결과수신URL</td>
  57. <td align=left><input type="text" name="retUrl" size="41" value="http://localhost/dream_php_test03.php"></td>
  58. </tr>
  59. </table>
  60. <br><br>
  61. <input type="submit" value="본인인증 테스트" >
  62. </form>
  63. <br>
  64. <br>
  65. <br>
  66. </center>
  67. </body>
  68. </html>