3👍
✅
You can get the data with request.GET.
id = request.GET['id']
topic = request.GET['topic']
Or you can try with request.GET.get()
Source:stackexchange.com
3👍
You can get the data with request.GET.
id = request.GET['id']
topic = request.GET['topic']
Or you can try with request.GET.get()