jquery + ajax + php 샘플 소스

 
 
제가 허접하게 만들었지만, 샘플 소스 제공해 봅니다. 추천좀 부탁드릴께요~~.
 
[Client Javascript Source]
 
// form과 div의 obj를 넘겨주면, ajax를 실행해서 그 결과 html을 div에 넣어줍니다.
function request_post(form, obj)
{
    var formdata=$(form).serialize();
    //alert("formdata="+formdata);
    $.ajax({
            type: "POST",
            url: "post_server.php",
            data: formdata,
            dataType: "html",
            success: function(data){
                $(obj).html(data);
            },
       });
}
 
// main_cmd,와 sub_cmd, 그리고 value를 인자로 실행시켜서 그 결과를 div와 같은 obj에 삽입
function request_get(main_cmd, sub_cmd, value, obj)
{
    //alert("cmd : " + cmd + ", value : " + value);
    $.ajax({
            url: "get_server.php",
            data: {'main_cmd': main_cmd, 'sub_cmd': sub_cmd, 'value': value},
            dataType: "html",
            success: function(data){
                $(obj).html(data);
            }
       });
}
[Server : PHP 코드]
function ajax_error($code)
{
        global $connect;
        if($connect) my_close($connect);
        header("HTTP/1.0 $code Error");
        exit;
}
 
// 예로.. id 체크하는 것
$m_checkid = $_POST['id'];
 
if( $m_checkid )
{
        $query_string = "select user_id from user_table where user_id = '".$m_checkid."'";
        $return_string = "<font color='green'>사용가능</font>";
        $result = my_query_error($query_string);
        while($row_data =  mysql_fetch_array($result))
        {
                $return_string = "<font color='red'>중복</font>";
        }
        echo $return_string;
}
 
내용은 별로 없지만, 추천좀 해 주세요..
 
프로젝트 의뢰해야 하는데 활동점수가 부족해서 의뢰를 정상적으로 못하고 있습니다. 추천좀 꾹~~
 
|

댓글 6개

일단 츄쳔해써욤
감사합니다.
추천합니다..
추천합니다.
감사합니다.
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

+
제목 글쓴이 날짜 조회
14년 전 조회 1,684
14년 전 조회 3,912
14년 전 조회 1,612
14년 전 조회 1,902
14년 전 조회 1,637
14년 전 조회 2,050
14년 전 조회 1,980
14년 전 조회 2,243
14년 전 조회 1,744
14년 전 조회 2,777
14년 전 조회 2,486
14년 전 조회 2,047
14년 전 조회 7,760
14년 전 조회 1,655
14년 전 조회 2,014
14년 전 조회 1,773
14년 전 조회 1,921
14년 전 조회 2,298
14년 전 조회 1,771
14년 전 조회 2,151
14년 전 조회 1,736
14년 전 조회 1,696
14년 전 조회 2,312
14년 전 조회 4,189
14년 전 조회 1,753
14년 전 조회 3,166
14년 전 조회 1,954
14년 전 조회 1,841
14년 전 조회 2,732
14년 전 조회 2,649
14년 전 조회 1,617
14년 전 조회 2,541
14년 전 조회 2,997
14년 전 조회 2,404
14년 전 조회 1,634
14년 전 조회 3,042
14년 전 조회 1,841
14년 전 조회 1,627
14년 전 조회 1,582
14년 전 조회 2,301
14년 전 조회 2,680
14년 전 조회 2,175
14년 전 조회 1,642
14년 전 조회 1,822
14년 전 조회 2,335
14년 전 조회 2,298
14년 전 조회 1,612
14년 전 조회 4,377
14년 전 조회 2,297
14년 전 조회 5,469
14년 전 조회 1,838
14년 전 조회 2,848
14년 전 조회 1,913
14년 전 조회 1,797
14년 전 조회 2,674
14년 전 조회 1,707
14년 전 조회 2,653
14년 전 조회 1,754
14년 전 조회 2,453
14년 전 조회 2,040
14년 전 조회 5,031
14년 전 조회 3,012
14년 전 조회 1,856
14년 전 조회 1,774
14년 전 조회 2,291
14년 전 조회 1,980
14년 전 조회 1,994
14년 전 조회 3,196
14년 전 조회 1,720
14년 전 조회 3,938
14년 전 조회 3,809
14년 전 조회 2,170
14년 전 조회 1,858
14년 전 조회 3,257
14년 전 조회 1,993
14년 전 조회 2,233
14년 전 조회 1,636
14년 전 조회 2,742
14년 전 조회 2,184
14년 전 조회 2,253
14년 전 조회 2,544
14년 전 조회 1,674
14년 전 조회 4,751
14년 전 조회 1,913
14년 전 조회 2,849
14년 전 조회 2,255
14년 전 조회 1,739
14년 전 조회 5,707
14년 전 조회 1,600
14년 전 조회 3,705
14년 전 조회 1,951
14년 전 조회 1,714
14년 전 조회 2,117
14년 전 조회 8,837
14년 전 조회 2,035
14년 전 조회 3,091
14년 전 조회 2,533
14년 전 조회 2,096
14년 전 조회 5,164
14년 전 조회 1,779