I need to use a printf statement to display a bunch of stuff, part of which is a % sign. How do I do this without php thinking it's a mixed arguement call? Here is what I've tried...
printf(" <td>%s\% on-road, %s\% trail</td>", $record["PavementMiles"], $record["TrailMiles"]);
and
printf(" <td>%s % on-road, %s % trail</td>", $record["PavementMiles"], $record["TrailMiles"]);