HubsInfo Network
You're browsing our forum as a Guest meaning you can only see a portion of the forum in read-only mode. To view all forum nodes and be able to create threads/posts please register or log-in.
PHP MySQL Linux Material Design Web Hosting Online Games SimCity BuildIt

PHP MySQLi Procedural and Object-Oriented Interface

0 Members and 1 Guest are viewing this topic.

PHP MySQLi Procedural and Object-Oriented Interface
« on: February 15, 2016, 08:51:00 AM »

Object Oriented Interface
Code: [Select]
//connect to database
$mysqli = new mysqli("localhost", "username", "password", "database");

//check for errors
if ($mysqli->connect_errno) {
    echo "Failed to connect to MySQL: " . $mysqli->connect_error;
}

//write query
$res = $mysqli->query("SELECT  * from tablename");

//fetch query
$row = $res->fetch_assoc();

//display results
echo $row['table_id'];


Mysqli Procedural
Code: [Select]
//Connect to the database
$con=mysqli_connect("localhost", username", "password", "database") or die(mysqli_connect_error());

//Write query
$query="SELECT * from tablename";

//Fetch results
$result=mysqli_query($con, $query);

//Display results
while($row=mysqli_fetch_array($result))
{
//use row to fetch the element of each column
}

//close connection
mysqli_close($con);



Old way of accessing mysql database
Code: [Select]
//connect to database
$con = mysql_connect("localhost", "username", "password");

// select database
//$db= mysql_select_db("database") or die(mysql_error());

//Write query
$query= "SELECT* from tablename";

//Fetch Results
$result=mysql_query($query);

//Display result
while($row=mysql_fetch_array($result))
{
// acccess the table elements and display it
}

//mysql close connection
mysql_close($con);






--
Ref: http://onecore.net/php-mysqli-procedural-and-object-oriented-interface.htm


« Last Edit: March 17, 2020, 10:21:16 AM by hubsinfo »
 



Linux Ubuntu Guides Linux games - Lutris.net