how to convert number latitude or longitude just to decimal convert latitude to show 2 number in front of comma convert longitude to show 3 number in front of comma
show me code in model and view insert + view the result like in here
view insert
<div class="form-group">
<label for="">Latitude</label>
<input type="number" class="form-control" name="latitude" id="latitude" placeholder="Latitude">
</div>
<div class="form-group">
<label for="">Longitude</label>
<input type="number" name="longitude" class="form-control" id="longitude" placeholder="Longitude">
</div>
view result
<?php foreach ($pekerjaan_array as $key) { ?>
<tr>
<td><?php echo $key->no_spk; ?></td>
<td><?php echo $key->latitude; ?></td>
<td><?php echo $key->longitude; ?></td>
<td><?php echo $key->nama_vendor; ?></td>
</tr>
<?php } ?>
please help me