How do i create a sort by price in php?

I am developing a website using laravel, i need to add the sort by price drop down, similar to the snapshot:


when a user clicks on “highest Price” it shows items with the highest integer

And when a user clicks on lowest price it displays the lowest integer. etc

Any suggestions on what i need to do?

Try this

$query="SELECT * FROM table ORDER BY colum_name DESC  ";

so how did you manage to build the results page? same way for the dropdown.

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.