Skip to main content

Posts

Apa itu WhatsApp Bisnis?

Apa itu WhatsApp Bisnis? WhatsApp Bisnis  adalah aplikasi yang didesain khusus untuk para pemilik bisnis yang bisa diunduh secara gratis. WhatsApp memang khusus dibuat untuk pemilik bisnis kecil, seperti Usaha Kecil dan Menengah (UKM).  WhatsApp Bisnis mengeluarkan fitur-fitur yang akan memudahkan Anda untuk berkomunikasi dengan pelanggan. Anda dapat membalas pesan secara otomatis, sortir pesan, dan menjawab pertanyaan pelanggan dengan cepat.  Selain itu, Anda bisa mengunduh WhatsApp Bisnis di sistem operasi Android maupun iOS. Sejak pertama kali diluncurkan, Indonesia boleh berbangga karena menjadi negara Asia pertama yang bisa menggunakan aplikasi ini. Kemudian baru diikuti negara lainnya seperti Italia, Mexico, Britania Raya, dan Amerika Serikat.  Cara Membuat WhatsApp Bisnis? Sebelum mengetahui lebih lengkap apa saja fitur dan manfaat WhatsApp Bisnis, kami akan tunjukkan dulu bagaimana cara membuat WhatsApp Bisnis. Berikut ini cara membuat WhatsApp Bisnis: 1.  Download WhatsApp Bis

Instruksi PHP-MySQL

Instruksi PHP-MySQL Di dalam PHP terdapat beberapa perintah SQL yang di perlukan untuk memanipulasi database di MySQL yaitu : mysqli_connect ($servername, $username, $password, $databaseName) = melakukan koneksi PHP ke Database  mysqli_close ($conn) = melakukan stop koneksi service database  mysqli_connect_error () = menampilkan debug informasi error konektivitas ke database MySQL  mysqli_query ($conn, $sql) = menjalankan perintah sql dari kita  mysqli_error ($conn, $sql) = menampilkan debug informasi error bahasa SQL  mysqli_num_rows ($result) = menangkap attribute database  mysqli_fetch_assoc ($result) = menangkap isi data pada database. Membuat Database MySQL dengan XAMPP Tahap pertama sebelum memulai latihan ini adalah terlebih dahulu kita buat databasenya dan kita koneksikan dengan script php yang kita buat nanti. Karena disini pembahasannya tentang mysql, maka pembuatan databasenya juga harus di mysql. Untuk implementasinya, kita bisa menggunakan aplikasi XAMPP yang sudah disedia

Function with Return Statement

Chapter 5 FUNCTIONS Learning Outcomes At the end of this chapter, you should be able to: Understand the two types of functions. Identify the three function elements. Develop a program using functions. Introduction Programs can be as short as one line of code or millions of lines of code. Small programs can easily be developed using only one function, which is the main function. However, most computer programs that solve real-world problems are large and contain thousands to millions of lines of code. Thus, more than one programmer or a team of programmers are needed to develop such programs. In order to develop and maintain large programs, an effective way to construct it is by using functions. Functions can efficiently break down large programs into smaller ones as they can divide problems into sub problems called modules. Every function is a program segment that can do specific tasks. Each of the sub tasks can be coded as functions that must go together with the main function to buil