php.org PHP Logo
Beginner Intermediate Advanced

Search results for: "query methods"

Are there alternative methods or functions in PHP that can be used to avoid problems when fetching data from a MySQL query multiple times?

When fetching data from a MySQL query multiple times in PHP, it is important to use methods like mysqli_data_seek() or mysqli_result::data_seek() to r...

What are some methods to retrieve query string parameters in PHP?

To retrieve query string parameters in PHP, you can use the $_GET superglobal array. This array contains key-value pairs of query string parameters pa...

What are the common methods for searching a database in PHP, and what are the key components of a SQL query for this purpose?

When searching a database in PHP, common methods include using SQL queries with the SELECT statement along with various clauses such as WHERE, LIKE, a...

What is the best method to store the output of a SELECT query in a variable in PHP?

When storing the output of a SELECT query in a variable in PHP, you can use the fetch() or fetchAll() methods provided by the PDO or MySQLi extension,...

What are the benefits of using PDO's fetchAll method in PHP for retrieving query results compared to traditional methods like mysql_fetch_array?

When retrieving query results in PHP, using PDO's fetchAll method provides several benefits over traditional methods like mysql_fetch_array. fetchAll...

Showing 31 to 35 of 10000 results

‹ 1 2 3 4 5 6 7 8 9 10 ... 1999 2000 ›
PHP.ORG

A free knowledge base for PHP developers. Open to all.

Legal

  • About
  • Contact / Imprint
  • Terms
  • FAQ

© 2025 php.org. All rights reserved.