I did a telegram bot with python, who send a message like
if message == '/start':
bot.sendMessage(chat_id, "Insert your name:")
a = 'name'
if a == 'name' and message != '/start'
name_user = message
bot.sendMessage(chat_id, "Insert your birthday:")
a = 'birth'
and so on for other information...
the problem came when at the same time two users use my bot because the first user change 'a' so the second start with the birth and not with the name, can someone help me please?
Store with user ID.