在javascript if语句中取消设置$ _POST

i need to unset $_POST['u'] but only inside a javascript function, now $_POST ARRAY unsets itself automatically after the page is ready...

function resetChat(cod_c){
            if(confirm('are you sure?')){

                if (sendReq.readyState == 4 || sendReq.readyState == 0) {
                    sendReq.open("POST", 'getChat.php?chat='+cod_c+'&last=' + lastMessage, true);
                    sendReq.setRequestHeader('Content-Type','application/x-www-form-urlencoded');
                    sendReq.onreadystatechange = handleResetChat; 
                    var param = 'action=reset';
                    param += '&user=' + document.getElementById('cod_user').value;
                    sendReq.send(param);
                    document.getElementById('txt_message').value = '';

                }
            <?php  unset($_POST['u']); ?>  // this only 1 time after confirm???
            }                       
        }
function handleResetChat() {
        }   

PHP is server side language and JavaScript is on client side :) You need learn more about webdev ;)