Hi, I am failry new to php, although have up until now seemed to be doing ok plodding along by myself and trying to solve any problems i have encountered. However i seemed to have been chasing this problem for a while and now think that i simply can’t see the forest for the trees so any advice would be gratefully recieved. I have looked at various forum listings but i still seem to be stuck.
I have a paging script that i modified and changed to get the results and the look that i wanted. The query took two categories from HTML drop down menu’s and returned the results perfectly in to a results page, using POST, of course when i clicked on to the next page the information wasn’t carried across. Now i have the below session at the begining of the search page and the results page. The sessions represent my two search boxes, the first being category and the second location however i am still not carrying the information through the pages. I have tried everything i can think of, i would be grateful for any assistance and advice thank you.
[php] session_start();
session_register (?category?);
session_register (?location?);
$HTTP_SESSION_VARS [?category?] = $category;
$HTTP_SESSION_VARS [?location?] = $location;
?>