Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8670123
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T18:38:22+00:00 2026-06-12T18:38:22+00:00

Via asynchronous HTTP requests, I can use an existing service to load/save some information

  • 0

Via asynchronous HTTP requests, I can use an existing service to load/save some information from/into a database. But these requests (AJAX) can be done, at least as far as I know, only from the client-side (e.g. a JavaScript script).

E.g. using jQuery ajax method:

$.ajax({ 
    type: "POST", 
    url: someurl,
    dataType: 'xml',
    data: xmlString, 
    success: function(data) { 
        // some code here 
    }
});

How can use the same service from a PHP script? That is, how can I “make an AJAX call from PHP”, using either the POST or GET methods?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-12T18:38:24+00:00Added an answer on June 12, 2026 at 6:38 pm

    You can use cURL library to access the same URL.

    You will possibly need to set the “X-Requested-With” header to “XMLHttpRequest” in case the receiving service checks.

    Otherwise, proceed as in this answer except that you will be using the POST commented fields.

    This answer suggests how to debug and reverse engineer an existing AJAX service. Then, you will be able to use e.g. SimpleXML to decode the answer, which, from the jQuery code you posted, will come through in XML format.

    A TEST.

    $url = 'http://your-url';
    $fields = array(
        'key' => 'value',
        // other fields
    );
    $headers = array(
        'X-Requested-With: XMLHttpRequest',
    );
    
    $ch = curl_init();
    curl_setopt($ch,CURLOPT_URL, $url);
    curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
    
    // Note that you might have to set CURLOPT_POSTFIELDS to a urlification of
    // $fields instead of an array, in case the service distinguishes form-data
    // from url encoding.
    curl_setopt($ch, CURLOPT_POST, True);
    curl_setopt($ch,CURLOPT_POSTFIELDS, $fields);
    
    // IMPORTANT: some AJAX services will expect inbound data to be coming JSON encoded, so if that is the case, you shall have to write instead
    // curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($fields));
    
    $xml = curl_exec($ch);
    curl_close($ch);
    
    $xml = simplexml_load_string($xml);
    
    print_r($xml);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am performing asynchronous HTTP (Ajax) requests via jQuery with the basic $.ajax(). The
I've got some javascript functions that take perform asynchronous requests over the network and
Via jquery / Javascript Given a number 1234567891234 How can I concat, or truncast
via server API's i'm getting contact information using member of structure: char displayName[USERNAME_MAX_SIZE]; One
Via Function: myfunc Parameters: a - First parameter b - First parameter I can
I create my forms via extending Zend_Form. And I use one Form for addAction()
I load content via jQuery load() but for each time I load a given
I'm writing an NSOperation to make a web service request via a NSURLConnection .
I have an Android app that communicates with a server via asynchronous socket connection
I have two ASMX web services consumed from javascript. The first service performs a

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.