SQLite 3 Database Encryption

Submitted by nurhodelta_17 on
This tutorial tackles on how to encrypt data in a sqlite3 database using PHP. SQLite as per site description, is an in-process library that implements a self-contained, serverless, zero-configuration, transactional SQL database engine. The data in this database however are easily access thus, I've created this tutorial as a simple solution.

How to Highlight Matched Keyword in Search using PHP

Submitted by nurhodelta_17 on
In this tutorial, you will learn on how to highlight matched search keyword using PHP. For the users to be aware why a certain result match to a searched keyword, we need a functionality that highlights matched word to the keyword. In this tutorial, I'm going to use preg_filter() function in order to achieve that functionality.

JavaScript - Simple Login App

Submitted by razormist on
Learn on how to create a Simple Login App using Javascript. This code can be used in validating some forms to prevent errors. JavaScript is a scripting or programming language that allows you to implement complex things on web pages. It is a text-based programming language meant to run as part of a web-based application. It is an interpreted programming language that has a capabilities of Object-Oriented.

C# - How To Connect To SQLite

Submitted by razormist on
Learn on how to connect the application to the SQLite Database using C#. C# syntax is highly expressive, yet it is also simple and easy to learn. C# is faster than dynamically typed languages because things are more clearly defined. It contains several classes that support any C# platforms, like game development. It has a friendly environment for all new developers. SQLite is very carefully tested prior to every release and relevant to use in some way. Most of the SQLite source code is devoted purely to testing and verification.

How to Get the Height and Width of Uploaded Image using PHP

Submitted by nurhodelta_17 on
In this tutorial, you will learn on how to get the size or the height and width of uploaded image using PHP with getimagesize() function. For instance that we wanted to have a server-side validation on upload image before uploading it, getimagesize() function will surely help you out.

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 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.