I am working on a web-based application build with Codeigniter.
Part of the user form:
<div class="form-group" id="hasil_swab_tpc">
<label for="swab_tpc" class="col-sm-3 control-label">Hasil TPC</label>
<div class="col-sm-8">
<input type="text" id="swab_tpc" name="swab_tpc" class="form-control" placeholder="Hasil Analisa TPC">
</div>
</div>
I want the user input normal value, let say 250, save the value to the database. Then in the view page, I want to display that value in scientific notation 2.5 x 102.
My question is: how to convert a number to the scientific notation? For some reason, I need to display the number from user input from 250 to 2.5 x 102 and 25 to 2.5 x 101, etc.