X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=demo%2Fclient%2Fagesort.php;h=90622d21a3c603c15b3b77a7ba85fd92f076f1be;hb=a48c09b3cc49bc7f603cd5b06de74ee2d2878ca4;hp=0b6aa9a928de5766f42d15ad360917863e0d9c7f;hpb=b76d21c030bcd510dce8d7e245581842c62ab6b5;p=plcapi.git diff --git a/demo/client/agesort.php b/demo/client/agesort.php index 0b6aa9a..90622d2 100644 --- a/demo/client/agesort.php +++ b/demo/client/agesort.php @@ -50,9 +50,7 @@ if (!$resp->faultCode()) { print "The server gave me these results:
";
     $value = $resp->value();
     foreach ($value as $struct) {
-        //$name = $struct->structmem("name");
         $name = $struct["name"];
-        //$age = $struct->structmem("age");
         $age = $struct["age"];
         print htmlspecialchars($name->scalarval()) . ", " . htmlspecialchars($age->scalarval()) . "\n";
     }