Software login software DIY

zhaozj2021-02-17  61

Software Logging Software DIY HTTP protocol is one of the main protocols of the web service, and the file browsing and website dynamic data is implemented by this protocol. The process of implementation is to perform data requests (read, storage, etc.) to the web server via HTTP sessions. Our programmatically has POST and GET data requests. POST can be used to pass the data entered by the user to the CGI (ASP, JSP) program, and the CGI is re-taken by the Contect-Length environment variable to take the corresponding length of data stream information. If the data is submitted successfully, the server will generate a normal response, and its header information is: http / 1.1 200 ok website login is fill in the login information by the user, and is submitted by the CGI program to the web server. Submission as an example: First by the SOHU homepage into the website login screen, select the login category of the website, then fill in the website: This process consists of 2 steps, the first step fill in the name and website address of the website ( Http: // ...), the second step is filled in some details and then you can submit it. Really realizing data saving is the second step, its core web code (simplified) is:

website description: