Tutorials

PHP - OOP Inserting Multiple Rows in One Form using AJAX/jQuery

Submitted by nurhodelta_17 on
This tutorial will teach you how to insert multiple rows in MySQL Table using AJAX/jQuery. The code is written in PHP using MySQLi OOP(Object-oriented Programming). With the use of AJAX/jQuery, we can insert row into our database without reloading the page.

Python - Django Templating and Includes

Submitted by nurhodelta_17 on
This tutorial tackles about templating and includes. Templating and including is done so that you wont have to repeat a certain html lines again and again if you wanted to have same result in several html pages. For example, 2 pages of your site have the same header. Instead of creating 2 headers for both pages, you just need to create a header file and include it to both pages.