-1

I need the last inserted record in PHP without insert any data I need the id before insert any data .

Saty
  • 22,443
  • 7
  • 33
  • 51
Hoque MD Zahidul
  • 10,560
  • 2
  • 37
  • 40

2 Answers2

5

I hope this is what you're looking for

SELECT id FROM table ORDER BY id DESC LIMIT 1

Hope this helps you out

Amit Horakeri
  • 747
  • 5
  • 18
1

Simply use

SELECT MAX(id) FROM your_table_name

Or using PDO

PDO::lastInsertId
Ankur Tiwari
  • 2,762
  • 2
  • 23
  • 40