jQuery в PHP, используя $ _GET

Как изменить параметр в файле PHP с помощью jQuery? Вот мой код, я не понимаю, почему, когда я нажимаю кнопку, значение для $val не меняется:

 <!DOCTYPE html> <html> <head> <script src="js/jquery-1.10.2.min.js"> </script> </head> <body> <script> $(document).ready(function(){ $("button").click(function(){ $("#test").hide(); $.get( "jqueryphp.php", { name: "John", time: "2pm" } ); }); }); </script> <h2>This is a heading</h2> <p>This is a paragraph.</p> <p id="test">This is another paragraph.</p> <button>Click me</button> <?php if(isset($_GET['time'])) $val=$_GET['time']; else $val='parametru ne transmis 0'; echo "<br>".$val."</br>" ?> </body> </html> 

Related of "jQuery в PHP, используя $ _GET"