Tag: lampp

错误403在我的index.php加载资源,如CSS和JS

我在Linux,基本操作系统,并select安装lampp。 我的CSS和JS将不会加载。 当我通过浏览器检查我的页面时。 控制台说失败加载资源:服务器响应状态403(禁止)我真的相信我的目录是正确的。 这是错误

curl_init()函数不工作

您好,我尝试PHP POST请求内POST请求认为它可能对我有用,我的代码如下 $sub_req_url = "http://localhost/index1.php"; $ch = curl_init($sub_req_url); $encoded = ''; // include GET as well as POST variables; your needs may vary. foreach($_GET as $name => $value) { $encoded .= urlencode($name).'='.urlencode($value).'&'; } foreach($_POST as $name => $value) { $encoded .= urlencode($name).'='.urlencode($value).'&'; } // chop off last ampersand $encoded = substr($encoded, 0, strlen($encoded)-1); curl_setopt($ch, CURLOPT_POSTFIELDS, […]