I want to javascript or php script delete the cookie that i was set up with javascript now i want to delete that cookie.
here this is my javascript:
<script type="text/javascript">
    var url = window.location.hash;
    var result = url.split('?');
    var advertise = result[1].split("&");
    var id = advertise[0].split("=");
    document.cookie = "update_id=" + id[1];
    var name = advertise[1].split("=");
    document.cookie = "update_name=" + name[1];
</script>
how to delete or clear this cookie using javascript or php code.
 
     
    