我为我的登录页面创建了一个简单的API服务,它使用cURL将数据发布到我的API,但是在我的API索引中我仍然收到错误:
未定义的索引用户名
<?php
header('Content-Type: application/x-www-form-urlencoded');
$username = $_GET['username'];
$password = $_GET['password'];
但是当我将其硬编码到网址http://www.example.com/LoginApi/index.php?username=gerald&password=4321时,它可以正常工作