×
1 Choose EITC/EITCA Certificates
2 Learn and take online exams
3 Get your IT skills certified

Confirm your IT skills and competencies under the European IT Certification framework from anywhere in the world fully online.

EITCA Academy

Digital skills attestation standard by the European IT Certification Institute aiming to support Digital Society development

SIGN IN YOUR ACCOUNT TO HAVE ACCESS TO DIFFERENT FEATURES

CREATE AN ACCOUNT FORGOT YOUR PASSWORD?

FORGOT YOUR DETAILS?

AAH, WAIT, I REMEMBER NOW!

CREATE ACCOUNT

ALREADY HAVE AN ACCOUNT?
EUROPEAN INFORMATION TECHNOLOGIES CERTIFICATION ACADEMY - ATTESTING YOUR PROFESSIONAL DIGITAL SKILLS
  • SIGN UP
  • LOGIN
  • SUPPORT

EITCA Academy

EITCA Academy

The European Information Technologies Certification Institute - EITCI ASBL

Certification Provider

EITCI Institute ASBL

Brussels, European Union

Governing European IT Certification (EITC) framework in support of the IT professionalism and Digital Society

  • CERTIFICATES
    • EITCA ACADEMIES
      • EITCA ACADEMIES CATALOGUE<
      • EITCA/CG COMPUTER GRAPHICS
      • EITCA/IS INFORMATION SECURITY
      • EITCA/BI BUSINESS INFORMATION
      • EITCA/KC KEY COMPETENCIES
      • EITCA/EG E-GOVERNMENT
      • EITCA/WD WEB DEVELOPMENT
      • EITCA/AI ARTIFICIAL INTELLIGENCE
    • EITC CERTIFICATES
      • EITC CERTIFICATES CATALOGUE<
      • COMPUTER GRAPHICS CERTIFICATES
      • WEB DESIGN CERTIFICATES
      • 3D DESIGN CERTIFICATES
      • OFFICE IT CERTIFICATES
      • BITCOIN BLOCKCHAIN CERTIFICATE
      • WORDPRESS CERTIFICATE
      • CLOUD PLATFORM CERTIFICATENEW
    • EITC CERTIFICATES
      • INTERNET CERTIFICATES
      • CRYPTOGRAPHY CERTIFICATES
      • BUSINESS IT CERTIFICATES
      • TELEWORK CERTIFICATES
      • PROGRAMMING CERTIFICATES
      • DIGITAL PORTRAIT CERTIFICATE
      • WEB DEVELOPMENT CERTIFICATES
      • DEEP LEARNING CERTIFICATESNEW
    • CERTIFICATES FOR
      • EU PUBLIC ADMINISTRATION
      • TEACHERS AND EDUCATORS
      • IT SECURITY PROFESSIONALS
      • GRAPHICS DESIGNERS & ARTISTS
      • BUSINESSMEN AND MANAGERS
      • BLOCKCHAIN DEVELOPERS
      • WEB DEVELOPERS
      • CLOUD AI EXPERTSNEW
  • FEATURED
  • SUBSIDY
  • HOW IT WORKS
  •   IT ID
  • ABOUT
  • CONTACT
  • MY ORDER
    Your current order is empty.
EITCIINSTITUTE
CERTIFIED

What are the two options for communicating with a MySQL database from PHP?

by EITCA Academy / Tuesday, 08 August 2023 / Published in Web Development, EITC/WD/PMSF PHP and MySQL Fundamentals, Getting started with MySQL, Connecting to a database, Examination review

When it comes to communicating with a MySQL database from PHP, there are two main options available: the MySQLi extension and the PDO (PHP Data Objects) extension. Both options provide a way for PHP code to interact with a MySQL database, but they have different features and syntax.

The MySQLi extension, which stands for MySQL Improved, is an enhanced version of the original MySQL extension. It offers both procedural and object-oriented approaches to database interaction. With the procedural approach, you use functions like mysqli_connect() to establish a connection to the database, and mysqli_query() to execute SQL queries. The object-oriented approach allows you to work with database connections and queries as objects, providing a more intuitive and flexible way of working with the database.

Here's an example of using the MySQLi extension in procedural style:

php
// Establish a connection to the MySQL database
$connection = mysqli_connect('localhost', 'username', 'password', 'database_name');

// Check if the connection was successful
if (!$connection) {
    die('Connection failed: ' . mysqli_connect_error());
}

// Execute a SQL query
$query = "SELECT * FROM users";
$result = mysqli_query($connection, $query);

// Fetch the results
while ($row = mysqli_fetch_assoc($result)) {
    echo $row['username'] . "<br>";
}

// Close the connection
mysqli_close($connection);

On the other hand, PDO is a database abstraction layer that provides a consistent interface for working with various databases, including MySQL. It allows you to write code that is independent of the specific database being used, making it easier to switch between different database systems. PDO uses a consistent set of methods for database operations, such as prepare() for preparing SQL statements, execute() for executing prepared statements, and fetch() for retrieving results.

Here's an example of using PDO to connect to a MySQL database:

php
// Establish a connection to the MySQL database
$dsn = 'mysql:host=localhost;dbname=database_name';
$username = 'username';
$password = 'password';

try {
    $connection = new PDO($dsn, $username, $password);
    $connection->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
} catch (PDOException $e) {
    die('Connection failed: ' . $e->getMessage());
}

// Execute a SQL query
$query = "SELECT * FROM users";
$result = $connection->query($query);

// Fetch the results
while ($row = $result->fetch(PDO::FETCH_ASSOC)) {
    echo $row['username'] . "<br>";
}

// Close the connection
$connection = null;

The two options for communicating with a MySQL database from PHP are the MySQLi extension and the PDO extension. The MySQLi extension provides both procedural and object-oriented approaches, while PDO offers a consistent interface for working with multiple databases. Both options have their own advantages and it's up to the developer to choose the one that best suits their needs.

Other recent questions and answers regarding Connecting to a database:

  • How can you check if the connection to a MySQL database was successful in PHP?
  • How do you establish a connection to a MySQL database using MySQLi in PHP?
  • How can you create a new user account specifically for a database?
  • What are the default username and password used to connect to a MySQL database from PHP?

More questions and answers:

  • Field: Web Development
  • Programme: EITC/WD/PMSF PHP and MySQL Fundamentals (go to the certification programme)
  • Lesson: Getting started with MySQL (go to related lesson)
  • Topic: Connecting to a database (go to related topic)
  • Examination review
Tagged under: Database Communication, MySQL, MySQLi, PDO, PHP, Web Development
Home » Connecting to a database / EITC/WD/PMSF PHP and MySQL Fundamentals / Examination review / Getting started with MySQL / Web Development » What are the two options for communicating with a MySQL database from PHP?

Certification Center

USER MENU

  • My Account

CERTIFICATE CATEGORY

  • EITC Certification (106)
  • EITCA Certification (9)

What are you looking for?

  • Introduction
  • How it works?
  • EITCA Academies
  • EITCI DSJC Subsidy
  • Full EITC catalogue
  • Your order
  • Featured
  •   IT ID
  • EITCA reviews (Reddit publ.)
  • About
  • Contact
  • Cookie Policy (EU)

EITCA Academy is a part of the European IT Certification framework

The European IT Certification framework has been established in 2008 as a Europe based and vendor independent standard in widely accessible online certification of digital skills and competencies in many areas of professional digital specializations. The EITC framework is governed by the European IT Certification Institute (EITCI), a non-profit certification authority supporting information society growth and bridging the digital skills gap in the EU.

    EITCA Academy Secretary Office

    European IT Certification Institute ASBL
    Brussels, Belgium, European Union

    EITC / EITCA Certification Framework Operator
    Governing European IT Certification Standard
    Access contact form or call +32 25887351

    Follow EITCI on Twitter
    Visit EITCA Academy on Facebook
    Engage with EITCA Academy on LinkedIn
    Check out EITCI and EITCA videos on YouTube

    Funded by the European Union

    Funded by the European Regional Development Fund (ERDF) and the European Social Fund (ESF), governed by the EITCI Institute since 2008

    Information Security Policy | DSRRM and GDPR Policy | Data Protection Policy | Record of Processing Activities | HSE Policy | Anti-Corruption Policy | Modern Slavery Policy

    Automatically translate to your language

    Terms and Conditions | Privacy Policy
    Follow @EITCI
    EITCA Academy

    Your browser doesn't support the HTML5 CANVAS tag.

    • Artificial Intelligence
    • Quantum Information
    • Cloud Computing
    • Web Development
    • Cybersecurity
    • GET SOCIAL
    EITCA Academy


    © 2008-2026  European IT Certification Institute
    Brussels, Belgium, European Union

    TOP
    CHAT WITH SUPPORT
    Do you have any questions?
    We will reply here and by email. Your conversation is tracked with a support token.