Skip to content
Advertisement

Problem with create table Category and get the url correctly PHP

I am creating an ecommerce, which can have Men’s Fashion, Women’s Fashion or Children’s Fashion, it could also have more in the fure like Sports, Electronics, etc.

But I don’t know if I have, for example, to repeat the categories clothes, etc for each one or not, I don’t know if there is a better way. Since I must also create the dynamic menu

My table structure is like this:

JavaScript

Some posible inserts what i want:

JavaScript

It’s that ok what I’m doing, repeat for each section the same categories as clothes, Jeans, etc.?

I really do this because otherwise I don’t know how to create the menu gives the image that I leave below

Another question i have.

I am creating this menu, with said table, which is what I want to obtain.

enter image description here

Is there any way to get the url in this way:

mens-fashion/clothing/shirts

because for example shirts would be the url above.

So what i mean, if the category is level 4, the url would be: level1/level2/level3/level4.

What would be better:
To add it directly to my table the absolute path or
can i do that with PHP, i leave the code that I am using.

JavaScript

I tried to add this line to get, for example, the level 1 url, but it doesn’t:

$url_level1 = ($row['parent'] == 0) ? $row['category_url'] : '';

Edit:

The css with which I was testing: (It doesn’t really have styles and it’s outdated)

JavaScript

Note: What I realy was creating was something like this:

JavaScript
JavaScript
JavaScript

enter image description here

Advertisement

Answer

It’s that ok what I’m doing, repeat for each section the same categories as clothes, Jeans, etc.?

Yes, It’s perfectly okay to do that. Personally, that is what I prefer.

What would be better: To add it directly to my table the absolute path or can i do that with PHP

You can easily achieve it with PHP.

Kindly use these functions to generate the markup for the nested categories. You can modify the HTML to achieve your desired results.

JavaScript

You can use it like so

JavaScript

Then in the HTML

JavaScript

To get part of the menu example Mens Fashion, you just have to filter the $cat array to get it. Example

JavaScript

Then in the HTML

JavaScript
User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement