Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
function parse_array_to_query_string ($array,$site)
{
$st = $site;
if (count($array) > 0)
{
$st .= "array0=" . $array[0];
}
foreach ($array as $key=>$value)
{
if ($key != 0)
{
$st .= "&array" . $key . "=" . $value;
}
}
return $st;
}