Jump to content

cpaoletto

New Members
  • Posts

    7
  • Joined

  • Last visited

Profile Information

  • Gender
    Not Telling

cpaoletto's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Yes, I think I tried it before your edit. But it worked great. Thanks!!!
  2. Worked beautifully, thanks you soo much!!!!
  3. 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));
  4. When I decode it: var_dump(json_decode($response, true)); I get NULL
  5. 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!
  6. 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.