About 1,330,000 results
Open links in new tab
  1. PHP MySQL Select Data - W3Schools

    First, we set up an SQL query that selects the id, firstname and lastname columns from the MyGuests table. The next line of code runs the query and puts the resulting data into a …

  2. PHP: mysql_query - Manual

    For other type of SQL statements, INSERT, UPDATE, DELETE, DROP, etc, mysql_query () returns true on success or false on error. The returned result resource should be passed to …

  3. How to execute an SQL query and fetch results using PHP

    Jul 23, 2025 · In this article, we will discuss how to execute an SQL query and how to fetch its result? We can perform a query against the database using the PHP mysqli_query () method.

  4. SQL Queries With PHP: Insert, Select, Update & Delete

    May 19, 2025 · Learn how to use SQL Queries with PHP to add, retrieve, update, and delete data. Includes prepared statements and result handling examples.

  5. PHP - Tutorial Republic

    In this tutorial you will learn how to select the records from MySQL database tables using the SQL SELECT query in PHP.

  6. PHP MySQL: Querying Data from Database

    You will learn how to query data from MySQL database by using PHP PDO and use PDO prepared statement to securely select data.

  7. Processing MySQL Queries in PHP: A Detailed Guide - Squash

    Nov 21, 2023 · Learn how MySQL queries are returned in PHP and the steps involved in this process. Understand the syntax, retrieve and access the result set, display the output, and …

  8. MySQL PHP queries with examples - informatecdigital.com

    Mar 23, 2025 · Learn how to create MySQL queries in PHP with practical examples. This article will guide you step by step through the process of creating queries.

  9. PHP: mysqli::query - Manual

    For successful queries which produce a result set, such as SELECT, SHOW, DESCRIBE or EXPLAIN, mysqli_query () will return a mysqli_result object. For other successful queries, …

  10. PHP MySQL SELECT Query with Examples | Simplilearn

    Oct 22, 2024 · Learn what is select query in PHP, the Syntax of select query & how to implement it with examples, using object oriented method & PDO method.