In the $row["info"] i have HTML code with all information.PHP Code:$actor = $row["info"];
$actorarray = explode(", ", $actor);
foreach($actorarray as $value){
$actorlinkarray[] = "<a href=\"./person.php?name=".$value."\">".$value."</a>";
}
In the information i have this code
Now i need to do,so where <b>Actors</b> after do with $actorlinkarray.HTML Code:<b>Actors:</b> Jeff Davis, Ranjit Chowdhry, Morgana Di, Sanjay Sippy
How to do this ?





Bookmarks