Hi im creating website(school project),and i wanna create Price checkbox like this one
So when i click on 10-20eur it shows products which cost from 10 to 20 eur.
so php have to get products which product_price is from 10 to 20 and show it
Hi im creating website(school project),and i wanna create Price checkbox like this one
So when i click on 10-20eur it shows products which cost from 10 to 20 eur.
so php have to get products which product_price is from 10 to 20 and show it
Ask your teacher; they’ll have a better idea of your current level of understanding and will know where to point you. Asking us to do your homework gets you nowhere.
if you are looking to execute another query/get data upon click of the ‘price checkbox’… and then display your new data on the screen somewhere… you are looking at a AJAX type of solution.
You could just load EVERYTHING at once… and put the hidden info in hidden DIVS/containers… and then just show/hide these DOM elements when the associated price checkbox is clicked.
What path you take is up to you.