Mysqli Connection Adobe Dreamweaver CS5

Preview:

DESCRIPTION

MysqliConnection via PHP Create PHP file connection to connect database. DB connection via Dreamweaver.

Citation preview

1

Outline

Mysqli Connection via PHP

Create PHP file connection to connect database.

DB connection via Dreamweaver.

By: Eng\ Mohammed Hussein 2

http://localhost/

By: Eng\ Mohammed Hussein 3

Mysql and Mysqli

The Mysql_* and Mysqli_* family of functions were both

created to give a programmer methods of interacting with a

MySQL database using PHP.

For instance, when we want to connect to MySQL and open

communication to it, we use mysqli_connect. Then to close

that same connection we use musqli_close Not very

complicated.

After added Mysqli family of functions with PHP5, it has

improved efficiency, speed, code, security and interfacing due

to the way the new model is structured.

By: Eng\ Mohammed Hussein 4

http://localhost/phpmyadmin/

By: Eng\ Mohammed Hussein 5

Login to phpDb Database

By: Eng\ Mohammed Hussein 6

PHP file Connection

Create PHP file connection to connect database

By: Eng\ Mohammed Hussein 7

PHP Sessions

<?php

session_start();

if(isset($_SESSION['views']))

$_SESSION['views']=$_SESSION['views']+1;

else

$_SESSION['views']=1;

echo "Views=". $_SESSION['views'];

?>

<html>

<body>

<br>

<?php

echo "This is inside PHP<br>";

echo "Hello World!<br>";

$q= "How Are You Every Body?";

Echo $q;

?>

</body>

</html>

F5

Google Chrome

1

2

8By: Eng\ Mohammed Hussein

Include PHP file connection & Query

Calling php file connection inside index.php code.

By: Eng\ Mohammed Hussein 9

Query calling back

Using $body variable inside index.php code

By: Eng\ Mohammed Hussein 10

DB connection via Dreamweaver

By: Eng\ Mohammed Hussein 11

Recordset using Dreamweaver

By: Eng\ Mohammed Hussein 12

Import data using Dreamweaver

By: Eng\ Mohammed Hussein 13

Recommended