我正在使用一个php表单,它将从URL获取cid。例如records.php?cid = 23
但是我在下一行中收到错误未定义的cid索引。
if(is_numeric($ _ POST [' cid']))
if (isset($_GET['cid']))
{
// if the form's submit button is clicked, we need to process the form
if (isset($_POST['submit']))
{
// make sure the 'cid' in the URL is valid
if (is_numeric($_POST['cid']))
{
// get variables from the URL/form
$cid = $_POST['cid'];
答案 0 :(得分:2)
GET
不是POST
。 $_GET['cid']