Tools, FAQ, Tutorials:
Inserting Data into a Table in PHP
How To Insert Data into a Table in PHP?
✍: FYIcenter.com
If you want to insert a row of data into a table, you can use the INSERT INTO statement as shown in the following sample script:
<?php include "mysql_connection.php"; $sql = "INSERT INTO fyi_links (id, url) VALUES (" . " 101, 'dev.fyicenter.com')"; if (mysql_query($sql, $con)) { print(mysql_affected_rows() . " rows inserted.\n"); } else { print("SQL statement failed.\n"); } $sql = "INSERT INTO fyi_links (id, url) VALUES (" . " 102, 'dba.fyicenter.com')"; if (mysql_query($sql, $con)) { print(mysql_affected_rows() . " rows inserted.\n"); } else { print(mysql_errno($link).": ".mysql_error($link)."\n"); } mysql_close($con); ?>
Remember that mysql_query() returns integer/FALSE on INSERT statements. If you run this script, you will get something like this:
1 rows inserted. 1 rows inserted.
⇒ Inserting Rows Based on SELECT Statement in PHP
⇐ Number of Rows Affected by a SQL Statement in PHP
2016-10-20, 1691🔥, 0💬
Popular Posts:
How to use "json-to-xml" Azure API Policy Statement? The "json-to-xml" Policy Statement allows you t...
FYIcenter.com Online Tools: FYIcenter JSON Validator and Formatter FYIcenter JSON to XML Converter F...
How to use the JSON to XML Conversion Tool at utilities-online.info? If you want to try the JSON to ...
What is Azure API Management Publisher Dashboard? Azure API Management Publisher Dashboard is an Azu...
How to start Docker Daemon, "dockerd", on CentOS systems? If you have installed Docker on your CentO...