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.
double quotes surrounding value may or may not be there
<?php
$str1='<PARAM NAME=movie VALUE="intro.swf">';
$Path="ASD";
preg_match('/(<param name=movie value=["]*)([^">]*)(["]*.*)/i',$str1,$myarr);
$newStr = $myarr[1].$Path.$myarr[2].$myarr[3];
echo($newStr);
?>