下面是我的代码,Request.Form("contact")("email")
关联数组在哪里,请帮助我。
If NOT Request.Form("type") = Null and Trim(Request.Form("type"))="unsubscribe" Then
emailaddress=Trim(Request.Form("contact")("email")) 'this need to sure
Else
emailaddress=""
End If
PHP 等价物是:
$emailaddress=$_POST["contact"]["email"];
基本上,我正在寻找这样的东西(伪代码):
[contact] => Array ( [id] => 50984 [email] => test1@test.com [first_name] => test [last_name] => test [ip] => 127.0.0.1 )