MySQL的插入
當數據放入一個MySQL表是被稱為插入數據。當插入數據,重要的是要記住的確切名稱和類型的表的列。如果您嘗試建立一個500字作文成為一個欄只接受整數的大小3 ,您會結束了一個討厭的錯誤!
插入數據到您的表
現在您已經建立您的表格,讓我們把一些數據的小狗!這是在PHP / MySQL的代碼插入的數據為“榜樣”我們創建表在過去的教訓。
<?php
// Make a MySQL Connection
mysql_connect("localhost", "admin", "1admin") or die(mysql_error());
mysql_select_db("test") or die(mysql_error());
// Insert a row of information into the table "example"
mysql_query("INSERT INTO example
(name, age) VALUES('Timmy Mellowman', '23' ) ")
or die(mysql_error());
mysql_query("INSERT INTO example
(name, age) VALUES('Sandy Smith', '21' ) ")
or die(mysql_error());
mysql_query("INSERT INTO example
(name, age) VALUES('Bobby Wallace', '15' ) ")
or die(mysql_error());
echo "Data Inserted!";
?>