Take data from user and use that data in a python script

RVCa

New Member
I am a newbie in coding. I am learning php and python.I want to take data from user. For this I used google and found a form based on html and phpindex.html\[code\]<html><body><form action="data.php" method="get">TEXT1: <input type="text" name="text1">TEXT2: <input type="text" name="text2"><input type="submit"></form></body></html>\[/code\]Now data.php can use:$_GET["text1"]$_GET["text2"]But my script is in python. I don't know how to use the data given by user.Please help.Regards,Abhishek.
 
Back
Top