Connecting to my sql using PHP

Post on 02-Jul-2015

145 views 1 download

description

How to connect PHP With MySQL

transcript

Course Instructor: Nisa Soomro

nisa1207@gmail.com

prog_nisa@quest.edu.pk

With PHP, you can connect to and manipulate databases.

MySQL is the most popular database system used with PHP.

2

MySQL is a database system used on the web

MySQL is a database system that runs on a server

MySQL is ideal for both small and large applications

MySQL is very fast, reliable, and easy to use

MySQL supports standard SQL

MySQL works on many operating systems and with many languages including PHP, PERL, C, C++, JAVA, etc.

MySQL compiles on a number of platforms

MySQL is free to download and use

MySQL is developed, distributed, and supported by Oracle Corporation

MySQL is named after co-founder Monty Widenius's daughter: My

3

The data in MySQL is stored in tables. A table is a collection of related data, and it consists of columns and rows.

Databases are useful when storing information categorically. A company may have a database with the following tables:Employees

Products

Customers

Orders4

PHP + MySQL

PHP combined with MySQL are cross-platform (you can develop in Windows and serve on a Unix platform)

5

A query is a question or a request.

We can query a database for specific information and have a recordsetreturned.

Look at the following query (using standard SQL):

SELECT LastName FROM Employees 6

7

8

9

10

Use the PHP mysqli_connect() function to open a new connection to the MySQL server.

Open a Connection to the MySQL Server

Before we can access data in a database, we must open a connection to the MySQL server.

In PHP, this is done with the mysqli_connect() function.

Syntax

mysqli_connect( host, username, password, dbname);

11

Syntax

mysqli_connect( host, username, password, dbname);

12

Parameter Description

host Either a host name or an IP address

username The MySQL user name

password The password to log in with

dbname Optional. The default database to be used when performing queries

13

14

15

16

17

18

19

20

21

22

$dbc=mysqli_connect( 'localhost', "root", "", "users");

$query = "INSERT INTO user VALUES ( 123, 'hel88');";

mysqli_query($dbc,$query );

mysqli_close($dbc);

www.w3school.com

Head First Php & MySQL

23