Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要构建一个只有几个字段的表单:用户名、密码和提交按钮。
为什么我需要这个表格?在我的网站中,有一个链接可以让一些用户登录另一个网站。换句话说,我想在我的站点主题中显示一个登录表单来输入登录数据并提交。
我的问题:有没有办法将我的内置表单值发送到该表单(另一个网站表单)然后自动提交?
好吧,有几种方法可以解决这个问题。
您可以在您的网站上拥有表单字段,但表单本身指向所需的网站。例如
<form action="http://www.other-site.com/form.php"> <input type="text" name="username" /> // and so on
或者您可以在服务器端获取表单数据并使用 CURL 发送数据。