10/10/2018, 09:33
làm sao để lấy giá trị Auto increment trong php
Em có bảng sanpham cột id tự tăng
khi em
insert into sanpham(name='abc','mota') values('âh','ậh');
cột id tự tăng làm sao e lấy được mã đó ai biết chỉ e nhé thankyou nhiều
khi em
insert into sanpham(name='abc','mota') values('âh','ậh');
cột id tự tăng làm sao e lấy được mã đó ai biết chỉ e nhé thankyou nhiều
Bài liên quan
[=========> Bổ sung bài viết <=========]
quên +1 là có id của cái mới chèn
<?php
$link = mysql_connect('localhost', 'mysql_user', 'mysql_password');
if (!$link) {
die('Could not connect: ' . mysql_error());
}
mysql_select_db('mydb');
mysql_query("INSERT INTO mytable (product) values ('kossu')");
printf("Last inserted record has id %d\n", mysql_insert_id());
?>