Posts by Samuel Pereira • 29 points
4 posts
-
2
votes2
answers671
viewsA: Submit DIV over another DIV
CSS offers the ability to work in layers on your pages, so you can overlay elements on each other using the z-index property... As you said that bootstrap uses a z-index value of 1050 you can change…
-
0
votes1
answer76
viewsQ: Data array reorganization for display
I’m creating an application using AngularJs and skeleton, I have the layout set up, now I’m on the part of making it dynamic, but I’m facing a basic little problem. I have the following array coming…
-
1
votes3
answers4152
viewsA: Create Dropdown Menu
You can start by changing the HTML structure of your menu, not that it is not possible to do with this structure, but it would be better to work differently. This is just an example and you need to…
-
-2
votes1
answer299
viewsA: Add products without refresh
!isset($_SESSION['shop'][$id]) Try replacing isset with Empty, like this: !empty($_SESSION['shop'][$id]) You can also use php functions to manipulate array like in_array, array_key_exists and etc...…
phpanswered Samuel Pereira 29