questoin about http_build_query()

A

Anonymous

Guest
is there a way to leave a certain field out?

for instance, say I have page_num=2&color_id=5&start=5 and all I want to do is keep color_id=5&start=5

hmm.. so I guess I'm looking for a way to take an element out of an array.
 
Phrozt said:
is there a way to leave a certain field out?

for instance, say I have page_num=2&color_id=5&start=5 and all I want to do is keep color_id=5&start=5

hmm.. so I guess I'm looking for a way to take an element out of an array.
You may storage some info in $_SESSION, if you want what user not see some info.
 
well, I'm not trying to leave it out to keep it from someone, I just don't need the page_num information in the page that I'm passing that query string to. It doesn't *have* to be gone, but it's extra information that isn't needed.
 
Back
Top