Tools, FAQ, Tutorials:
Running a SQL Statement in PHP
How To Run a SQL Statement in PHP?
✍: FYIcenter.com
You can run any types of SQL statements through the mysql_query() function. It takes the SQL statement as a string and returns different types of data depending on the SQL statement type and execution status:
Here is a good example of running a SQL statement with the mysql_query() function:
<?php
include "mysql_connection.php";
$sql = 'SELECT sysdate() FROM dual';
$rs = mysql_query($sql, $con);
$row = mysql_fetch_array($rs);
print("Database current time: ". $row[0] ."\n");
mysql_close($con);
?>
If you run this script, you will get something like this:
Database current time: 2006-02-26 21:34:57
⇐ Selecting an Existing Database in PHP
2016-10-20, ∼2140🔥, 0💬
Popular Posts:
Where to find tutorials on PHP language? I want to know how to learn PHP. Here is a large collection...
How To Avoid the Undefined Index Error in PHP? If you don't want your PHP page to give out errors as...
How to Install Docker Desktop on Windows 10? You can follow this tutorial to Install Docker Desktop ...
How to register and get an application ID from Azure AD? The first step to use Azure AD is to regist...
Where can I download the EPUB 2.0 sample book "The Metamorphosis" by Franz Kafka? You can following ...