How get text right floating and right as a center?
$text = "The epic finale that will live foreve";
$newtext = wordwrap($text, 20, "<br />\n");
echo $newtext;
Just guessing what is the question:
$text = "The epic finale that will live foreve";
$newtext = wordwrap($text, 20, "<br />\n");
echo '<div style="float: right; width:50%; text-align: center;">'.$newtext.'</div>';