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.
我有一个 php 脚本,用于检查用户是否为正确的用户名输入了正确的密码。
如果它是正确的,我想打开另一个 php 页面并使用 get 方法传递一些值。我该怎么做呢?我对 php 很陌生。
如果是这种情况,您可以重定向到该页面:
if(condition){ header("Location: yourfile.php?parameter1=value1¶meter2=value2"); exit(); }
注意:应该在任何输出之前调用 header,建议在打印任何内容之前在页面顶部调用它。
或者使用 cURL 发送 GET 请求。
不要GET用来发送密码!
GET
而是尝试使用cURLlib 并通过POST.
cURL
POST