Let\'s say i have this json data. How to transform the \"tags\" to a string like
$tags = \"Rihanna, We, Found, Love, (Explicit), Def, Jam, Records, Pop\";
It looks like you need implode(). The function would be something like...
$tags = implode(', ', $videosDatas['videos'][$i]['tags']);