http_build_query()

We can use http_build_query function to use an array and create query string using all its elements. This output is already urlencoded and output string can be used in a URL to pass data to another page.

To generate the query string let us use this example. We have created an array with data from address book. Next line we use the same array to build the query string using http_build_query() function.
$ar=array("FName"=>"John","Address"=>"Street No 11 ","City"=>"Rain 
Town","Country"=>"USA");
echo http_build_query($ar);
The Output of above script is here
FName=John&Address=Street+No+11+&City=Rain+Town&Country=USA
Now this above string is ready to post through any URL. Here is an example.
<a href=anypage.php?FName=John&Address=Street+No+11+&City=Rain+Town
&Country=USA>Send Address</a>
Related Tutorial
Passing Data through URL
url encode
Inside any script development we will be using dynamic data to generate the string and pass it through URL , so here is the complete code.
<?Php
$ar=array("FName"=>"John","Address"=>"Street No 11 ","City"=>"Rain 
Town","Country"=>"USA");
$str=http_build_query($ar);
echo "<a href=anypage.php?$str>Send Address</a>";
?>
Note that your array can be from a database table and similar way you can generate script to pass each address to any application.
Subscribe to our YouTube Channel here


Subscribe

* indicates required
Subscribe to plus2net

    plus2net.com




    Post your comments , suggestion , error , requirements etc here .




    We use cookies to improve your browsing experience. . Learn more
    HTML MySQL PHP JavaScript ASP Photoshop Articles FORUM . Contact us
    ©2000-2024 plus2net.com All rights reserved worldwide Privacy Policy Disclaimer