There is a slider that displays different stores. Stores are added through the admin area. In this slider there are several shops with a title, a photo and an address. But there are no links to any store. I have a page (template) where the store should be completely visible, when I click on the store title in the slider. There are 3 columns in the database: id, title, address. title, address. I vivel. Now, as I understand it, you need to use $_GET[] to pass the parameters. What do I write in the url of the link (store header) <a href="?stores&id=<?=$stores['id'] ?>"><h3 class="title"><?= $stores['title']?></h3></a> stores <a href="?stores&id=<?=$stores['id'] ?>"><h3 class="title"><?= $stores['title']?></h3></a> ? stores & id = I used to make some websites on the VP and there when creating for example a new category or similar, the url is created automatically. Now I’m using the url http://prntscr.com/d4m477, which is the get parameter stores and id. How to display on a separate page, exactly the store I click on?
Shl. ?stores&id= get pairs always need to be entered manually, starting from the logic of the names of where we want to go to this address?