以下は、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 )