Is it possible to create a multidimensional $_POST array that contains related fields? (CompanyName, CompanyAddress, CompanyPhone) (HomePhone, HomeAddress, HomeState) What I would like to do is when I click submit I essentially have two arrays inside of the $_POST array like this:
$_POST['CompanyInfo']['CompanyName']
$_POST['CompanyInfo']['CompanyAddress']
$_POST['CompanyInfo']['CompanyPhone']
$_POST['HomeInfo']['HomePhone']
$_POST['HomeInfo']['HomeState']
$_POST['HomeInfo']['HomeAddress']