POSTGRESQL
-
How To Use Laravel With PostgreSQL.
By default Laravel uses MySQL however we can connect any database like PostgreSQL. Changing default database that is from MYSQL…
-
CRUD Example Using PHP Object Oriented And PostgreSQL
How To Create PHP CRUD Using OOPS With PostgreSQL. CRUD stands for Create, Read, Update, and Delete. CRUD operations are basic data manipulation…
-
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…
-
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…