Can import the data from Excel file easily. But while importing the data the Superscript,it cannot be fetched in the same format from the Excel file.
While importing n2 from the file it appears as n2, Similarly for the other superscript variables too.
I have used PHPExcel to import the excel file, Using the following code $cell->getValue()->getRichTextElements();
can add the <sup>
before and </sup>
after the superscript text and save it in DB.
Above method will appear properly for the WEB, I also have the iOS app, when I send the data to iOS, the <sup>
and </sup>
is also shown along with the text.
Is there a way to solve it, with out adding the superscript tag for WEB, so that it appears properly in iOS.
Thanks in Advance.