JTable get last inserted id
Saturday, 25 April 2009 10:17
At first glance it seems that Joomla JTable lacks a lastInsertedId() function. Here is how we can get last inserted id
$row
->
bind
(
$data
)
;
$row
->
check
(
)
;
$row
->
store
(
)
;
$lastId
=
$row
->
id
;
Last Updated ( Monday, 04 May 2009 20:22 )