I am trying to create a variable that has a string repeated x amount of times depending on what $tagtime3 =
This is what I have so far:
$tagtime = $length / $overlaylength;
$tagtime3 = floor($tagtime);
$stringtoloop = "' . $tagmp3 . '";
for ($k = 0 ; $k < $tagtime3; $k++){ $finalstring = +.$stringtoloop; }
I think it could be done by pushing the string ' . $tagmp3 . ' into a variable within the loop.