如何从一个网址PHP中将变量拉入$ username = $ _GET ['example']

时间:2017-02-19 20:18:20

标签: php

我为我的登录页面创建了一个简单的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时,它可以正常工作

0 个答案:

没有答案