I have this function inside a functions file. I call it using this (from another file that calls includes the functions file): newBorrow_request($newBorrowRequest); ($newBorrowRequest) is an array of fields.
The function inserts data into the database, and it works fine.
The question: How can i return the ID field that it inserts into? I need the value in the same file where the function is called, can someone give me code for the function & code of how to call it in another file to get the ID?
Thanks
function newBorrow_request($newBorrowRequest) {
array_walk($newBorrowRequest, 'array_sanitise');
$fields = '`' . implode('`, `', array_keys($newBorrowRequest)) . '`';
$data = '\'' . implode('\', \'', $newBorrowRequest) . '\'';
$query = mysql_query("INSERT INTO `borrowRequest` ($fields) VALUES ($data)");
if (!$query) {
die('Could not query:' . mysql_error());
}
}
If you're working with < 5.5.0: http://php.net/mysql_insert_id
Preferable: http://www.php.net/manual/en/mysqli.insert-id.php