Posts by Sidney Roberto • 1 point
1 post
-
0
votes1
answer606
viewsQ: How to concatenate html tag in php?
$t ='<span style=\"color:#FF0000;\"> '; $t. "texto '</span>' "; echo $t; The code above does not work, nothing is printed. I believe the problem is the closure of tag span. How to solve?…