Point of Sale 3.0 Update 24/Jun/2018

Submitted by Shazi on

Language Used PHP Database My SQL User Interface Design HTML, AJAX,JQUERY,JAVASCRIPT Web Browser Mozilla, Google Chrome, IE8,OPERA Software WAMP Server Download and Unzip file on your local system copy phppos . Put phppos folder inside root directory Database Configuration Open phpmyadmin Create Database phppos Import database phppos.sql (available inside zip package) User Open Your browser put

PHPPOS Project in PHP and Mysql

Submitted by Shazi on
Language Used PHP Database MySQL User Interface Design HTML, AJAX,JQUERY,JAVASCRIPT Web Browser Mozilla, Google Chrome, IE8,OPERA Software XAMPP Server/WAMP Server Database Configuration Open phpmyadmin Create Database phppos Import database phppos.sql (available inside zip package) For User Open Your browser put inside browser “http://localhost/phppos” Login Details for user: admin/shahzad123

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

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.