How can I take a string like:
navMenu[]=1&navMenu[]=6&navMenu[]=2&navMenu[]=3&navMenu[]=4&navMenu[]=5
And in php make it so that I can remove a certain value for the navMenu[], but it would still stay in the same order but with the value removed. Or add a value as well.
I have been tampering with exploding it at the & sign but am not sure how I can add or remove a value, and making sure the & sign is not at the start or end of the string.
If you’re getting this from the request, you don’t even need
parse_str, you can just get the already parsed string from$_GETor$_POST, remove the value, then usehttp_build_queryto reassemble it into a query string.