how to send jquery values to PHP

how to send jquery values to PHP

Hi,
i have found a slider, it have a method to fire the changed values:

    
  1. $("#slider").bind("valuesChanged", function(e, data){
  2. console.log("Values just changed. min: " + data.values.min + " max: " + data.values.max);
  3. });
But how can i use it in my PHP script? The slider works, but i need the values in my PHP script.

best regards
Torsten