php-mysqlHow to use a variable in a MySQL query using PHP?
Using a variable in a MySQL query using PHP is a common task. The following example code block shows how to use a variable in a MySQL query using PHP:
$variable = "example";
$query = "SELECT * FROM table WHERE column = '$variable'";
$result = mysqli_query($connection, $query);
The output of the example code is a MySQL query that looks like this:
SELECT * FROM table WHERE column = 'example'
Code explanation
$variable = "example";
- This line of code declares a variable called$variable
and assigns it the value of "example".$query = "SELECT * FROM table WHERE column = '$variable'";
- This line of code declares a variable called$query
and assigns it a MySQL query that uses the$variable
variable.$result = mysqli_query($connection, $query);
- This line of code executes the MySQL query and stores the result in the$result
variable.
Helpful links
More of Php Mysql
- How to join tables with PHP and MySQL?
- How to update to null value in MySQL using PHP?
- How to use utf8mb4_unicode_ci in MySQL with PHP?
- How to fetch data from MySQL in PHP?
- How to check if a record exists in PHP and MySQL?
- How to get the version of MySQL using PHP?
- How to escape a string for MySQL in PHP?
- How to convert MySQL datetime to string in PHP?
- How to export data from MySQL to Excel using PHP?
See more codes...