I am having multi-level category and i want to define path like: Digital Point Forums > Design & Development > Programming > PHP as like in this forum. Please provide me any tutorial or help. Thanks
Assuming you have all your categories with parent ID's you simply start at the category and work your way back based on the ID and parent id until you find a category which doesnt have a parent id or it's 0 (a top level category)
I can do it by using GET method to some extend. The problem is how to store ids to unlimited depth Is there any function in php to store previous page id or content?
you could use a session variable, You can have unlimited parents and children for categories. You just need two values, the id and the parent id, and work your way backwards from the category of choice