회원가입 페이지 만들기 - 2


회원가입 페이지 만들기 - 2

회원가입 페이지 만들기 - 1 로그인 처리를 하기 전에, 회원가입 처리를 먼저 하는 것이 좋겠다 생각해서 회원가입 페이지 먼저 만들었... blog.naver.com 회원가입 정보를 Front 단에서 입력받았다면 이번엔 Back 단에서 처리를 해볼게요 앞 게시글에서 완성하지 못한 script.js -> ajax 처리 함수 function call_ajax_main(type = null) { $.ajax({ url: 'ajax_main.php', type: "post", data: { type: type, id: $("#user_id").val(), pw: $("#user_pw").val(), }, success: function (result) { var result = JSON.parse(result); alert(result.message); if (result.url) { location.href = result.url; } }, error: function (xhr, stat...



원문링크 : 회원가입 페이지 만들기 - 2