我没有时间也太累了,不能挣扎于此,所以我决定在这里问:我已经创建了文件 my.php ,其中只包含:
public string GetNextElement(IList<string> list, int index)
{
if ((index > list.Count - 1) || (index < 0))
throw new Exception("Invalid index");
else if (index == list.Count - 1)
index = 0;
else
index++;
return list[index];
}
然后我使用浏览器打开文件:
<?php var_dump( $_POST ); ?>
在浏览器中,我将 array(0){} 作为回复。
问题:我可能做错了什么?
谢谢!
答案 0 :(得分:2)
在网址中有GET
个参数,而不是POST
。
echo $_GET['post1']; // hey
echo $_GET['post2']; // ho
echo $_GET['post3']; // letsgo
答案 1 :(得分:1)
您无法通过URL传递POST变量。 你使用GET方法..