php - what does name="data[user][pass] in input tag means? -
i found inside input tag of website:
... name="data[user][pass]" ...
what mean? how can make php in tag attribute? , how can read this?
if present in <input>
tag , when corresponding form gets submitted php script can accessed like:
$_get['data']['user']['pass']; // or $_post['data']['user']['pass'];
depending on request method.
Comments
Post a Comment