Skip to main content

Source code SMS Gateway

Saya mempunya beberapa source code SMS Gateway (khususnya Gammu, PHP dan MySQL) yang saya buat sendiri:

1. SMS Center
2. Quick Count Pilkada/Pemilu
3. SMS Blaster
4. Autorespone
5. Dsb.

Bagi Anda yang ingin mendapatkan source code di atas, atau ingin mendapat bimbingan cara membuat sms gateway untuk keperluan bisnis atau tugas kuliah dapat menghubungi saya melalui YM (daniyusuf), telpon(021-32042055) atau email (daniyusuf@yahoo.com.

Saya juga membuka kerjasama seluas-luasnya dengan lembaga pendidikan untuk mengadakan workshop “Sehari Membuat SMS Gateway Sendiri”.

Comments

Unknown said…
This comment has been removed by the author.

Popular posts from this blog

Program PHP sederhana untuk menghitung simulasi kredit

Membuat Form <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>Untitled Document</title> <style type="text/css"> <!-- body,td,th { font-family: Geneva, Arial, Helvetica, sans-serif; font-size: 12px; color: #333333; } --> </style></head> <?php $harga=$_GET['harga']; $dp=$harga*0.2; ?> <body> <H2>FORM SIMULASI KREDIT </H2> <br /> <form id="form1" name="form1" method="post" action="simulasi_proses1.php"> <table width="580" border="0" cellspacing="2" cellpadding="2"> <tr> <td>Harga Kendaraan </td> ...

Contoh Kerangka Pemikiran

Berikut adalah contoh kerangka pemikiran yang diambil dari saran dan masukan Dosen Pengajar Bapak Romi Satria Wahoho.

Android studio contoh penerapan looping

Berikut adalah contoh penerapan looping pada android studio, program akan melakukan looping sebanyak 10 kali dan mencetak angka dari 1 sampai 11 . Buka dan edit file activity_main.xml seperti berikut: activity_main.xml xml version= "1.0" encoding= "utf-8" ?> < RelativeLayout xmlns: android = "http://schemas.android.com/apk/res/android" xmlns: app = "http://schemas.android.com/apk/res-auto" xmlns: tools = "http://schemas.android.com/tools" android :layout_width= "match_parent" android :layout_height= "match_parent" tools :context= "daniyusuf.com.contohlooping.MainActivity" > < TextView android :id= "@+id/txt_looping" android :layout_width= "match_parent" android :layout_height= "wrap_content" android :text= "Hello World!" app :layout_constraintBottom_toBottomOf= "parent" ...