I want show all post variables if name of variables has start add-
for example: this is a full string with post variables:
Array ( [PartNumber] => sfd [Description] => dsf [Issue] => dfs [Customer] => J.C.B. SERVICE [widget7-table_length] => 5 [add_332/F2684] => [add_333/D1641] => sdf [add_333/D1202] => [add_332/F3144] => sdf [add_332/F3147] => sfd [makeassy] => )
I want to display in array only
[add_332/F2684] => [add_333/D1641] => sdf [add_333/D1202] => [add_332/F3144] => sdf [add_332/F3147] => sfd
I'm trying
print_r($_POST['add_%']);
But, how you see this post, it's not working. Do you have any ideas ?