Hello:
I'm trying to print two variables next to each other and I'm running into a problem.
When I run the script, the result should appear as:
text 28%
Instead, I'm getting the following:
28%text
Can someone help me out? I don't understand why it is printing the second variable before the first variable.
Thank you very much.
<font size="2" face="Verdana"><?PHP echo $row['name'] . printf("%d%%",$percent); ?></font>