How to Develop CRUD Application from PHP MySQL

Today, We will see the example of Developing a CRUD Application from PHP MySQL. Download Source Code What is CRUD CRUD is an acronym for Create, Read, Update, and Delete. CRUD operations are basic data manipulation for databases. We will learn how to perform create (i.e. insert), read (i.e. select), update and delete operations. Here, we’ll also create a … Read more

MySQL table join

mysql 5.7

MySQL table join JOIN clause is used to combine rows from two or more tables, based on a related column between them. Different Types of SQL JOINs Here are the different types of the JOINs in SQL: (INNER) JOIN: Returns records that have matching values in both tables LEFT (OUTER) JOIN: Return all records from … Read more

php sql server connection : connect to MS SQL Server database

<?php $myServer = “localhost”; $myUser = “your_name”; $myPass = “your_password”; $myDB = “examples”; //connection to the database $dbhandle = mssql_connect($myServer, $myUser, $myPass) or die(“Couldn’t connect to SQL Server on $myServer”); //select a database to work with $selected = mssql_select_db($myDB, $dbhandle) or die(“Couldn’t open database $myDB”); //declare the SQL statement that will query the database $query … Read more