728x90
반응형
<?php
$link = mysqli_connect("localhost", "my_user", "my_password", "world");
/* check connection */
if (mysqli_connect_errno()) {
printf("Connect failed: %s\n", mysqli_connect_error());
exit();
}
mysqli_query($link, "CREATE TABLE myCity LIKE City");
$query = "INSERT INTO myCity VALUES (NULL, 'Stuttgart', 'DEU', 'Stuttgart', 617000)";
mysqli_query($link, $query);
printf ("New Record has id %d.\n", mysqli_insert_id($link));
/* drop table */
mysqli_query($link, "DROP TABLE myCity");
/* close connection */
mysqli_close($link);
?>
mysqli_insert_id(); 함수를 통해서 가지고 온다.
728x90
반응형
'PHP' 카테고리의 다른 글
Trying to access array offset on value of type null in .... 메세지 (0) | 2020.02.17 |
---|---|
Json Array 만들기 (0) | 2020.02.04 |
(스크랩) PHP에서 JSON 다루기 json ->php , php -> json 기본함수 사용 (0) | 2019.03.01 |
php 메일 보내기 (0) | 2018.10.25 |
php 랜덤수 난수 만들기 (0) | 2018.10.18 |