Jump to content

cpaoletto

New Members
  • Posts

    7
  • Joined

  • Last visited

Posts posted by cpaoletto

  1. Full code:

     

    $wsdl_url = "URL.asmx?WSDL";
    $client = new SoapClient($wsdl_url);
    $params = array(key" => "xxxxx","Code" => "xxxxx");
    $response  = $client->GetProspectAsJSON($params);

    var_dump(json_decode($object->GetProspectAsJSONResult, true));

  2. I'm getting the following result from a web service call.  I'd like to pass it to another page, possibly using sessions, and then access specific values on that page, such as FirstName.

     

    stdClass Object ( [GetProspectAsJSONResult] => [ { "ProspectId": xxxxxx, "Keycode": "Test", "FirstName": "Test", "LastName": "Test", "Company": "Test","Email": null } ] )

     

    I'm not sure what the best way to do this is.

     

    Thanks!

  3. I am trying to fill an existing PDF form with data from MySQL. I have found a lot of resources on generating a PDF using PHP but nothing on populating an existing PDF form from MySQL using PHP.

    Any help would be greatly appreciated. Thanks in advanced for your time and help!
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.