Skip to content
Advertisement

Search in PHP and XML

im working on a website for a customer and I need to make a search form. The website is a Car Dealership, you can check it here http://barradinhas.pt/amazingtrust/cars.php

Right now i have the cars being pulled from a XML file by a php function

JavaScript

So, i wanted to do an Ajax call or something like that so that the page wouldn’t refresh.

I’ve commed up with the following

JavaScript

This is not working right now and I know this isn’t the way to go…

Any ideas on how I can make this search form work?

Thanks guys

Quick translation

Todos : All // Marca : Brand // Tipo : Type //

Advertisement

Answer

To achieve above one way would be storing value of selects in array as key-value pair because there multiple such select-boxes at your website .

In below code i have first loop through all selects which are there under your form then i have use 2 array one to store key-value i.e : if id ="marca" and value="Audi" so key will be marca and value will be Audi and the other to store only keys i.e : marca ,tipo..etc.

Now , once we get all value from the selects we need to loop through car divs to match the value from array to data attr of particular .Here ,in every div i have added one extra class i.e :cars just to loop through it .Then i have check if the value in array matches with the data-attr value if yes we can some variable to store count and depending on this we will show or hide that divs .

Demo Code :

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