Code generator for pure php

Submitted by abubasil on
Hello again, This script will generate the basic php CRUD for named table. These CRUD (create, read, update, delete) use the pure php programming style. This script uses mysql, you may modify it to be for mysqli. step one: open config.php file and set localhost, db user, db password, and db name. step two: run install.php and set the name of the table (tables one by one each run) step three: set

How to Inline Edit Data in Table using PHP and jQuery

Submitted by nurhodelta_17 on
This tutorial tackles how to inline edit data in a table derived from MySQL Table. This means that you are editing the table within the table itself and you don't have to be redirected to a certain edit page. We have used jQuery to make this possible and also to handle our ajax request.

CodeIgniter Ajax File Upload using jQuery

Submitted by nurhodelta_17 on
This tutorial tackles oh how to ajax upload file in CodeIgniter using jQuery. In order for us to send the file via ajax request, where gonna be using FileReader and FormData. File reader reads the selected file then Formdata holds our file for ajax request. We use jQuery for our ajax request which is a javascript library that makes you handle javascript better.

Android - Simple Touch Gesture

Submitted by razormist on
Learn on how to create a Simple Touch Gesture using Android. This is simple application can be used to any apps that needed to detect touch movement to call any functions. Android is a mobile operating system developed by Google. It used in several gadget like smartphone, tablet, and even television. Android is open source to developers who has an interest in developing mobile apps.

CodeIgniter Ajax Signup with Validation using jQuery

Submitted by nurhodelta_17 on
This tutorial tackles on how to create a signup/register form in CodeIgniter. We use jQuery to handle our server side signup request. jQuery is a javascript library that makes you use javascript easier. CodeIgniter is a lightweight PHP framework that uses MVC(Model-View-Controller) architecture.

PHP - Simple String Conversion

Submitted by razormist on
Learn on how to create a Simple String Conversion using PHP. This code can be use in converting some string easily and automated. PHP is a server-side scripting language designed primarily for web development. Using PHP, you can let your user directly interact with the script and easily to learned its syntax. It is mostly used by a newly coders for its user friendly environment.