当数据放入一个MySQL表是被称为插入数据。当插入数据,重要的是要记住的确切名称和类型的表的列。如果您尝试建立一个500字作文成为一个栏只接受整数的大小3 ,您会结束了一个讨厌的错误!
insert 数据到您的表
现在您已经建立您的表格,让我们把一些数据的小狗!这是在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!";
?>
显示为
data inserted
时间: 2024-10-22 05:36:38