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.
我想创建简单的序列号检查器,但需要在其他域上进行检查
在www.my_site_1.com
www.my_site_1.com
表格代码
<form action="install.php" method="post"> Serial : <input type="text" name="serial" id="serial"> <input type="submit" value="Install"> </form>
我认为我需要使用解析来从check.php任何信息中获取结果如何做到这一点。~ 谢谢
check.php
您应该能够在 action 属性中设置 POST/GET URL 并将序列号直接传递给 check.php。在您的情况下,您想发送一个我假设的 GET 变量。
install.php 看起来像:
<form action="http://my_site_2.com/check.php" method="GET"> Serial : <input type="text" name="serial" id="serial"> <input type="submit" value="Install"> </form>