Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
How To Run a SQL Statement
How To Run a SQL Statement? - PHP Script Tips - Working with MySQL Database
✍: 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
2007-04-18, 4966👍, 0💬
Popular Posts:
What Articles Have You Read about JUnit? There are a number of JUnit articles that you should read: ...
What is the concept of XPOINTER? XPOINTER is used to locate data within XML document. XPOINTER can p...
What are the different storage classes in C? C has three types of storage: automatic, static and all...
The following variable is available in file1.c, who can access it? static int average; Answer: all t...
When should the method invokeLater() be used? This method is used to ensure that Swing components ar...