0

hi i m new to drupal(6) and please tell me, how to use node create from Services to access drupal database from my mobile app built using JS,AJAX,JQUERY MOBILE..

i want to insert some data like name,address,price into drupal table from my mobile app using node create service.

Thanks..

1 Answer 1

1
    $.ajax({
        url: "",
        dataType: "jsonp",
        jsonp: 'jsonp_callback',
        data: {"method" : "", "parameters required"},
        success:function(data){
        },
        error:function(){
            alert("Some error occured");
        }
    });

use the above to allow web service to access drupal DB.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.