Hi, i've got a little problem and i need your help please :

my script does :
1- post a value in "notes.php" to update values according to what is
send.
2- reload the script which calls an flash chart to update it

the problem is :

the datas are correctly updated in /notes.php when calling again the
script to update the chart it's working BUT the values in notes.php
are reset to initial value (which is 0) so the chart is showed empty
(because the charts fils its data with notes.php)


$(document).ready(function(){
        $("#nomGSP").change(function () {
         var hebergeur1 =  $('#nomGSP').val();
         $.post("/graphiques/notes.php", { hebergeur1:
hebergeur1 } );
         $.getScript("graphique3.js");

  });
});

Thanks.

Reply via email to