티스토리 뷰
- mysql_query를 통해서 insert를 하고나서
mysql_insert_id();
를 호출하면 마지막으로 insert한 결과 저장되는 아이디를 리턴한다.
예)
<?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 (column) values ('data')");
printf("Last inserted record has id %d\n", mysql_insert_id());
$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 (column) values ('data')");
printf("Last inserted record has id %d\n", mysql_insert_id());
?>
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- lecture
- 자바스크립트
- 서울
- c++
- Writing
- GX-10
- 팁
- 삼식이
- php
- 안드로이드 앱 개발 기초
- ny-school
- TIP
- K100D
- Android
- HTML5
- 속깊은 자바스크립트 강좌
- 뽐뿌
- 안드로이드
- google app engine
- Python
- java
- mini project
- 탐론 17-50
- 사진
- HTML5 튜토리얼
- gre
- 강좌
- Javascript
- 샷
- gae
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
글 보관함