Results 1 to 6 of 6

Thread: What’s the difference between using mysql_ functions and PDO?

  1. #1

  2. #2
    Join Date
    Jun 2013
    Location
    Forum
    Posts
    2,096

    Default

    mysqli is a replacement for the mysql functions, with object-oriented and procedural versions. It has support for prepared statements. PDO (PHP Data Objects) is a general database abstraction layer with support for MySQL among many other databases.
    Cheap VPS Hosting | $1 VPS Hosting
    Windows VPS Hosting | Windows with Remote Desktop Access
    Cheap Dedicated Servers | Linux Dedicated Server Hosting

  3. #3

    Default

    MySQL is Popular open source relational database management system
    PDO –PHP extension similar to MySQLi. Provides object oriented way to access database
    PDO will work on 12 different database systems, where as MySQLi will only work with MySQL databases.
    Both are object-oriented, but MySQLi also offers a procedural API.

  4. #4
    Join Date
    Feb 2016
    Location
    CA
    Posts
    381

    Default

    In PDO we include any CSS, JS file in header, Its functions will automatically picked up in any class. https://www.krends.com/

  5. #5
    Join Date
    Apr 2020
    Posts
    704

    Default

    Mysqli can be used in either an object-oriented style or a procedural style. PDO is always object-oriented. Mysqli is only for the MySQL database. PDO supports a variety of other brands of database using the same functions.

  6. #6

    Default What’s the difference between using mysql_ functions and PDO?

    As stated earlier, both PDO and MySQLi are extremely similar, but there's slight differences in syntax. MySQLi follows the old-school PHP snake_case convention, while PDO uses camelCase. Additionally, MySQLi's methods are used as object properties, while PDO uses the traditional syntax for functions.

Similar Threads

  1. Difference between ASP and ASP.net
    By addisoncave in forum Web Design Solutions
    Replies: 7
    Last Post: 11-11-2022, 08:35 AM
  2. What is the difference between SEO and SEM?
    By stuartspindlow in forum Business Tools
    Replies: 7
    Last Post: 09-26-2018, 02:34 AM
  3. What is the difference between PPC or CPC..?
    By artijain1900 in forum Business Tools
    Replies: 3
    Last Post: 10-30-2017, 08:10 AM
  4. What is the difference between Seo and Sem?
    By kaarlealmila in forum Business Tools
    Replies: 1
    Last Post: 08-04-2017, 06:48 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •