我在使用server2
从另一个网站访问远程网站的代码时遇到了一些问题server1
。我在 server2 内部使用的登录代码如下:
require_once("http://server2.com/access/models/config.php");
if (!securePage($_SERVER['PHP_SELF'])){die();}
//Prevent the user visiting the logged in page if he/she is already logged in
if(isUserLoggedIn()) { header("Location: http://server2.com/access/account.php"); die(); }
我所知道的是我不能使用 require/include 代码,因为这些代码用于从服务器内部调用 php 文件。有人知道从远程服务器登录到另一台服务器的代码是如何、在哪里或是什么?