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, ∼2698🔥, 0💬
Popular Posts:
How to convert JSON Objects to PHP Associative Arrays using the json_decode() function? Actually, JS...
How to install "The Windows SDK version 8.1"? I need to build my Visual Studio C++ applications. If ...
How To Pass Arrays By References? in PHP? Like normal variables, you can pass an array by reference ...
How to create the Hello-3.0.epub package? I have all required files to create Hello-3.0.epub. To cre...
How To Move Uploaded Files To Permanent Directory in PHP? PHP stores uploaded files in a temporary d...