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? - MySQL FAQs - PHP Connections and Query Execution
✍: 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';
$res = mysql_query($sql, $con);
$row = mysql_fetch_array($res);
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-07-01 21:34:57
2007-05-10, 5045👍, 0💬
Popular Posts:
Can one change the mouse pointer in Forms? The SET_APPLICATION_PROPERTY build-in in Oracle Forms all...
How was XML handled during COM times? During COM it was done by using MSXML 4.0. So old languages li...
What are the different elements in Functions points? The different elements in function points are a...
What is page thrashing? Some operating systems (such as UNIX or Windows in enhanced mode) use virtua...
Why does malloc(0) return valid memory address? What's the use? malloc(0) does not return a non-NULL...