Notepad

Submitted by MasXV on
This is a simple notepad with most of the basic Notepad features. Coded in Java. Code written by me completely from scratch Feel free to use it and learn from it. Enjoy! Regards, Masroor Aijaz

Vue.js User Registration/Sign up with PHP/MySQLi

Submitted by nurhodelta_17 on
This tutorial tackles on how to create a registration form using Vue.js with the help of PHP/MySQLi. This will also show you how to create a simple input validation with the use of vue.js. We are gonna be using axios in this tutorial to handle our request from our PHP Registration API.

Vue.js Insert Data into MySQL Database using PHP

Submitted by nurhodelta_17 on
This is the second part of my Vue.js CRUD tutorial wherein we are going to insert data into our database. I'll be making a customize modal with some styles from bootstrap to showcase how to hide/show a div using vue.js. In this tutorial, with the help of axios, we're gonna insert data into our database using our API.

PHP Ajax MySQL Search Form

Submitted by Obro Megh on
Functionality: 1. Real Time search and show the result on page with Ajax. ;) 2. Simple Style. Installation First create the database and make table using this SQL code below. CREATE TABLE countries ( id INT NOT NULL PRIMARY KEY AUTO_INCREMENT, name VARCHAR(50) NOT NULL ); In countries table what you put in name column it will be the search result and so on. ;) Then, Just change the backend-search