What does it mean to write a web page cj.html and submit it to the panduan.php page in post mode?
时光@记忆2018-04-16 22:08:03
Submitting data and processing code can be in the same php file. It is possible to have front-end and back-end together
时光@记忆2018-04-11 10:44:07
cj.html is the front-end code, panduan.php is the back-end script, and the front-end collects data and transmits it to the back-end for processing. The backend returns the results to the frontend after processing. There are GET, POST, and other methods. The POST method is encrypted transmission. The GET method is transmitted in clear text, and you can see
in the browser url box.