I have the following variable that I'd like to add a superscript character to. If the value from a dropdown selection equals MLS(ASAP), I'd like to add that CM superscript to the value. This value will be inserted into an Excel CSV via FPDF.
However, the code below simply inserts the HTML tags, it doesn't render the superscript.
Can this be done?
if($cred=='MLS(ASCP)')
$cred='MLS(ASCP)<sup>CM</sup>';
Thanks,
Rick
However, the code below simply inserts the HTML tags, it doesn't render the superscript.
Can this be done?
if($cred=='MLS(ASCP)')
$cred='MLS(ASCP)<sup>CM</sup>';
Thanks,
Rick