diff --git a/reference/url/functions/http-build-query.xml b/reference/url/functions/http-build-query.xml index 7f278ad812..a1d1f10eee 100644 --- a/reference/url/functions/http-build-query.xml +++ b/reference/url/functions/http-build-query.xml @@ -1,5 +1,5 @@ - + http_build_query @@ -34,10 +34,7 @@ $data = array('foo'=>'bar', 'cow'=>'milk', 'php'=>'hypertext processor'); -echo http_build_query($data); -/* Outputs: - foo=bar&baz=boom&cow=milk&php=hypertext+processor - */ +echo http_build_query($data); // foo=bar&baz=boom&cow=milk&php=hypertext+processor ?> ]]> @@ -124,10 +121,8 @@ class myClass { $data = new myClass(); -echo http_build_query($data); -/* Outputs: - foo=bar&baz=boom - */ +echo http_build_query($data); // foo=bar&baz=boom + ?> ]]>