Is there some smart way I can pass arrays in POST variables without exceeding some kind of POST limit? Let's say Im going to pass around 100 names from one page to another using javascript, I've heard that serialize works in php but im not sure why this would be better then just to use some kind of separator like this:
Dennis;Daniel;Johan;
and then use explode($_POST['name'],";").
also is there a way I can use associative array it would be even better.
any help will be appreciated!



Reply With Quote

Bookmarks