html to excel with php. Big numbers converts to exponential -


i'm exporting html table excel php. have problem column big numbers

example: 12345678901234567890

excel converts 1.23457e+19 in general format.

i want display full number - completely.

prepend single quote numbers have length > 10-12. have same problem few part numbers.

vba

bignumber = "'" & bignumber 

or

php

$bignumber = "'" . $bignumber 

my php rusty, might have escape quote.


Comments

Popular posts from this blog

c++ - How to add Crypto++ library to Qt project -

jQuery Mobile app not scrolling in Firefox -

how to receive file in java(servlet/jsp) -