I need to make a form for adding news. It should have a function of assigning several categories, for example, the article Titles 1 should be included before the category: Category 1 and Category 2. The question of how to properly organize the database, I did this: 
An example of writing to news_categories:
1;id_Названия1;id_Категория1; 2;id_Названия1;id_Категория2; If it is correct to design a database in such a way, then how to add news correctly through a news request, leave what we need to know in advance the ID of the news to be collected.
last_insert_id()and with this id we insert the entries into the category table - Mike