I have two lists.
The first list is a list of Book Authors where every name has his own ID
Example:
- id - name
- 1 Mr Miagi
- 2 Mr Smith
- 3 Susan Sun
- 4 Mr Commodore
The Second list is a list of books with one or more writers per book
Example:
- book - writer
- King Solomons Mines - Mr Miagi
- She - Mr Miagi
- Paperboy - Mr Commodore and Susan Sun
So what I need in the resulting list is the ID of the writer (from the first list) at every occurrence
Example:
- book - writer - id
- King Solomons Mines - Mr Miagi - 1
- She - Mr Miagi - 1
- Paperboy - Mr Commodore and Susan Sun - 4 , 3
What is the best Approach in PHP to get this result?