This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
KEDUDUKAN | NAMA GUNUNG/BUKIT | LOKASI | KETINGGIAN (m) | |
---|---|---|---|---|
1 | Gunung Kinabalu | Sabah | 4,095 | |
2 | Gunung Trusmadi | Sabah | 2,642 | |
3 | Gunung Tambuyukon | Sabah | 2,579 | |
4 | Gunung Murud | Sarawak | 2,422 | |
5 | Gunung Mulu | Sarawak | 2,376 | |
6 | Gunung Tahan | Pahang | 2,187 | |
7 | Gunung Korbu | Perak | 2,183 | |
8 | Gunung Yong Belar | Sempadan Perak-Kelantan | 2,181 | |
9 | Gunung Gayong | Perak | 2,173 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// load the 'fpdf' extension | |
require('fpdf.php'); | |
// just for demonstration purpose, the OP gets the content from a database instead | |
$h_img = fopen('img.jpg', "rb"); | |
$img = fread($h_img, filesize('img.jpg')); | |
fclose($h_img); | |
// prepare a base64 encoded "data url" |