Sebelum menggunakan script ini, anda harus memiliki web server baik itu Apache, Nginx, atau yang lainnya. PHP dan curl. Buat sebuah script bernama ortax.php

function fungsiCurl($url){
     $data = curl_init();
     curl_setopt($data, CURLOPT_RETURNTRANSFER, 1);
     curl_setopt($data, CURLOPT_URL, $url);
         curl_setopt($data, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.6) Gecko/20070725 Firefox/2.0.0.6");
     $hasil = curl_exec($data);
     curl_close($data);
     return $hasil;
}
$url = fungsiCurl('http://ortax.org/ortax/?mod=kurs');
$pecah = explode('<table id="table" width="100%" border="0" cellpadding="2" cellspacing="0" >', $url);
$pecah2 = explode ('</table>',$pecah[1]);
 echo "<table border='1'>";
 echo $pecah2[0];
 echo "</table>";
?>

lalu jalankan ortax.php, tampilannya seperti gambar dibawah ini.
kurs php ortax

Join the Conversation

2 Comments

Your email address will not be published. Required fields are marked *