Ubah, bukan rubah. Kalau rubah itu nama binatang =) Pakai fungsi ini: string number_format ( float number [, int decimals [, string dec_point, string thousands_sep]] )
<?php $number = 2500,3; $us_format = number_format($number, 2, '.', ','); // Hasilnya menjadi 2,500.30 echo "\$ $us_format"; ?> LuckyGuy354 IT Beginner http://www.wiwid.org ----- Original Message ----- From: "rhant82" <[EMAIL PROTECTED]> To: <[email protected]> Sent: Thursday, March 23, 2006 8:51 AM Subject: [MasterWeb] rubah currency > dear friends... > > ada yang bisa bantu gak, buat konversi mata uang rupiah ke dollar > terserah mau pake javascript atau php, soalnya saya kesulitan untuk > tugas kuliah... > ex: 1500 --> $ 1,500.00 > 250,3 --> $ 250.30 > thx a lot before................ > > > > > > > > ---------------------------------------------------------- > Komunitas MasterWeb Indonesia http://www.master.web.id > ---------------------------------------------------------- > MWN, Masternya WEBHOSTING di Indonesia, Indo/USA Servers, > Customer Support 24 jam http://www.masterwebnet.com > ---------------------------------------------------------- > WebDevelopment,Designing/Programming http://www.dlanet.com > ---------------------------------------------------------- > Yahoo! Groups Links > > > > > ---------------------------------------------------------- Komunitas MasterWeb Indonesia http://www.master.web.id ---------------------------------------------------------- MWN, Masternya WEBHOSTING di Indonesia, Indo/USA Servers, Customer Support 24 jam http://www.masterwebnet.com ---------------------------------------------------------- WebDevelopment,Designing/Programming http://www.dlanet.com ---------------------------------------------------------- Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/milis-masterweb/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
