1)); // Show all possible functions that can be used show($client->__getFunctions()); // Make a call to the getColors method and print out the results $info = $client->__soapCall("getColors", array()); show($info); // Make a call to the getNames method and print out the results $names = $client->__soapCall("getNames", array("set" => "all")); show($names); function show($data){ echo "
";
    print_r($data); 
    echo "
"; } ?>