How to Add and Remove CSS using jQuery

Submitted by nurhodelta_17 on
This tutorial tackles on how to add and remove css using jQuery. We usually predefined our CSS in the development of our app or website, but there are instance that we wanted to add a certain css to an element whenever an action is performed. Fortunately, this can be done using jQuery. jQuery is a javascript library that makes you use javascript easier.

How to Limit Characters to Display in a String using PHP

Submitted by nurhodelta_17 on
This tutorial tackles on how to limit characters to display in a string using PHP. In development, there are instance that the length of the string to be displayed is extremely long and destroys our layout. So, in order to solve this, we need to limit the characters to be displayed.

How to Create an Auto Complete Search using jQuery with PHP/MySQLi

Submitted by nurhodelta_17 on
This tutorial tackles on how to create an auto complete search using jQuery with PHP and MySQLi OOP. If you wanted to add an auto suggest on your search app, this tutorial will surely help you out. With the help of jQuery, we can dynamically make a POST request without refreshing the page.

C# - Simple Conversion Application

Submitted by razormist on
Learn on how to create a Simple Conversion Application using C#. This application is consist of different functionalities that can be used at some point. C# is a general-purpose, object-oriented programming language. C# automatically manages inaccessible object memory using a garbage collector, which eliminates developer concerns and memory leaks. It has a designed for improving productivity in the development of Web applications. It has a friendly environment for all new developers.

How to Generate URL-encoded Query String using PHP

Submitted by nurhodelta_17 on
This tutorial tackles on how to generate url-encoded query string using PHP. You can build your query strings manually but there is a recommended way to build query string which is the use of PHP's http_build_query() function. This function will help you build url-encoded query string.

How to Create a SEO Friendly URL in CodeIgniter

Submitted by nurhodelta_17 on
This tutorial tackles on how to create a SEO Friendly URL in CodeIgniter. SEO stands for Search Engine Optimization which is the practice of increasing the quantity and quality of traffic to your website through organic search engine results. In order for your site to gain higher rank in web search engines, you need to optimize your site's URL and this tutorial will help you achieve that in CodeIgniter.

Android - Simple GPS Location

Submitted by razormist on
Learn on how to create a Simple GPS Location using Android. This simple application can be used to any system that needed the information about the location of the user. The android is an open source operating system it's free and user friendly to mobile developers. Android is available to any devices such as TV, phones, watches etc.

Dynamic Dropdown Menu using Bootstrap 4 in CodeIgniter

Submitted by nurhodelta_17 on
This tutorial tackles on how to create a dynamic dropdown menu in CodeIgniter using Bootstrap 4. CodeIgniter is a lightweight PHP framework that uses MVC(model-view-controller) architecture. Bootstrap 4 is currently the latest version of Bootstrap that has several changes than the later version.

How to Create a Dynamic Dropdown Menu using PHP/MySQLi and Bootstrap 4

Submitted by nurhodelta_17 on
This tutorial tackles on how to create a dynamic dropdown menu using PHP with MySQLi-OOP and Bootstrap 4. Currently, the latest version of Bootstrap is 4 and has several changes from the later version. We are going to use Bootstrap 4's nav tag to create our menu where we put dynamic content in the dropdown.

CRUD Operation on JSON File using PHP

Submitted by nurhodelta_17 on
This tutorial tackles on how to CRUD(create, read, update and delete) which is also the same as show, add, edit and delete on JSON file using PHP. JSON stands for JavaScript Object Notation and has an extension of .json which is a syntax for storing and exchanging data. JSON is a text, which is used in exchanging data between a browser and a server.