How can I rewrite this section to be more professional? Maybe there is some way to combine the middle 6 lines into 1 line?
if($hyperlink){
$hyperlink_new=$hyperlink;
$hyperlink_new=str_replace("row[0]", $row[0], $hyperlink_new);
$hyperlink_new=str_replace("row[1]", $row[1], $hyperlink_new);
$hyperlink_new=str_replace("row[2]", $row[2], $hyperlink_new);
$hyperlink_new=str_replace("row[3]", $row[3], $hyperlink_new);
$hyperlink_new=str_replace("row[4]", $row[4], $hyperlink_new);
$hyperlink_new=str_replace("row[5]", $row[5], $hyperlink_new);
echo "<a href=\"$hyperlink_new\">";
}
Thank you.
1 Answer