- Codeigniter
Insert Data Into Mysql In Codeigniter
In this post we will learn , ho we can insert data into databse in codeigniter. Step 1 : Create…
Read More » - Codeigniter
Crud Example In Codeigniter
In this post we will learn , CRUD example in codeigniter. Step 1 : Create Table: CREATE TABLE IF NOT…
Read More » - JavaScript
Check All Checkbox Using Jquery
<html lang="en"> <head> <title>Select/DeSelect All Checkbox Using Jquery</title> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css"> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js"></script> </head> <body> <div class="container"> <h1…
Read More » - Jquery
How To Add/Remove Table Row Dynamically Using Jquery.
In this post , We will learn how we can add and remove table row dynamically using jquery. If you…
Read More » - PHP
Create Month Dropdwon Using Date Function In PHP.
There are two ways to create month dropdown in php. First, we can create static array of months and then…
Read More » - POSTGRESQL
Crud Application Using PHP And PostgreSqls
Step 1 : Create Database CREATE DATABASE demo Step 2 : Create Table: CREATE TABLE test (id serial NOT NULL,name…
Read More » - PHP
How To Insert Data Into Database Using PHP And PostgreSQL
If you want to insert data into postgresql using PHP then you are at right place.In this post we will…
Read More » - PHP
How To Install Laravel.
Step 1 : Requirements PHP >= 5.5.9 OpenSSL PHP Extension PDO PHP Extension Mbstring PHP Extension Tokenizer PHP Extension Step…
Read More » - PHP