/* suppose we have an array consist of 4 or more than that parameters then in order to pass these parameters to URL then we can use http_bhild_query as follows */
$data = array('city'=>'delhi',
'cloth'=>'dress',
'cow'=>'milk',
'php'=>'hypertextprocessor');
echo http_build_query($data);
output ==>> city=delhi&cloth=dress&cow=milk&php=hypertextprocessor
0 Comment(s)