MySQL Insert Example Script
1 2 3 4 5 6 7 8 9 10 11 |
<?php // Connect mysql_connect("localhost", "name", "pass") or die(mysql_error()); mysql_select_db("dbname") or die(mysql_error()); // Insert into "test" mysql_query("INSERT INTO test (name, nickname) VALUES ('Arnold', 'Shwarc')") or die(mysql_error()); echo "Done!"; ?> |
<?php
// Connect
mysql_connect("localhost", "name", "pass") or die(mysql_error());
mysql_select_db("dbname") or die(mysql_error());
// Insert into "test"
mysql_query("INSERT INTO test (name, nickname) VALUES ('Arnold', 'Shwarc')") or die(mysql_error());
echo "Done!";
?>
Create Table Example MySQL MySQL Query Example Script
![[Google]]( http://www.network-content.com/wp-content/plugins/easy-adsense-lite/google-light.gif)