About 400 results
Open links in new tab
  1. PHP MySQL Connect to database - W3Schools

    PDO will work on 12 different database systems, whereas MySQLi will only work with MySQL databases. So, if you have to switch your project to use another database, PDO makes the …

  2. PHP: MySQL Database - W3Schools

    With PHP, you can connect to and manipulate databases. MySQL is the most popular database system used with PHP.

  3. PHP MySQLi Functions - W3Schools

    Apr 1, 2013 · PHP MySQLi Introduction The MySQLi functions allows you to access MySQL database servers. Note: The MySQLi extension is designed to work with MySQL version …

  4. AJAX Database - W3Schools

    The page on the server called by the JavaScript above is an PHP file called "getcustomer.php". The source code in "getcustomer.php" runs a query against a database, and returns the result …

  5. PHP include and require - W3Schools

    It is possible to insert the content of one PHP file into another PHP file (before the server executes it), with the include or require statement. The include and require statements are identical, …

  6. PHP AJAX and MySQL - W3Schools

    The page on the server called by the JavaScript above is a PHP file called family.php. The source code in family.php runs a query against a MySQL database, and returns the result in an HTML …

  7. ADO Database Connection - W3Schools

    The easiest way to connect to a database is to use a DSN-less connection. A DSN-less connection can be used against any Microsoft Access database on your web site.

  8. AJAX Database - W3Schools

    The page on the server called by the JavaScript above is a PHP file called "getcustomer.php". The source code in "getcustomer.php" runs a query against a database, and returns the result …

  9. ASP.NET Web Pages Databases - W3Schools

    Displaying Data from Database With Web Pages, you can easily display data from a database. You can connect to an existing database, or create a new database from scratch. In this …

  10. PHP MySQL Prepared Statements - W3Schools

    This function binds the parameters to the SQL query and tells the database what the parameters are. The "sss" argument lists the types of data that the parameters are.