Insert Data - INSERT with SELECT, we can select values from the database and to register, we use INSERT. First, we want to add another customer in our database: ? 1 2 3 4 5 6 7 // establish connection to the database mysql_connect ("localhost", "username", "password") or ("not connect") which; mysql_select_db ("Database Name") or die ("database does not exist"); $ result = mysql_query ("INSERT INTO Customers (Name, Address) VALUES ('Hans Meier', 'Wuppernweg 19')"); ?> Actually, everything as usual, only the part in "mysql_query" now instead of SELECT's is an INSERT. Let's look at the SQL command closer look at: ? 1 INSERT INTO Customers (Name, Address) VALUES ('Hans Meier', 'Wuppernweg 19') INSERT INTO customer - in which table is entered which are (name, address) - the order of columns, as the values are entered. One can arranging as you like, but I consider myself basically to the order, which has the table. VALUES ('Hans Meier', 'Wuppernweg 19') - now here come the values to be entered. The order depends on the order that you set in advance. Strings are generally taken in inverted commas, numbers do not (unless you want to save the number as a String) Execute the script times out (pay attention to the correct connection data) and you should have a third record in your table "clients" find. INSERT with variables
การแปล กรุณารอสักครู่..
