Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public function getLastId()
- {
- $query = "SELECT id FROM posts ORDER BY id DESC LIMIT 1";
- $result = mysql_query($query);
- while($row = @mysql_fetch_assoc($result))
- {
- return $row['id'];
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement