php - How do i combine echo with printf without getting the string length at the end?

one text

Solution:

Please don't, just chose one and go with it. In php you can concatenate string using the "." so this is an example of your code using concatenation:

echo '<tr><td style="border:1px solid;">' . $FirstName . '</td>' .
'<td style="border:1px solid;">' . $LastName . '</td>' .
'<td style="border:1px solid;">' . $Email . '</td>' .
'</tr>';

Source