php - 单击锚链接时激活查询

时间:2016-08-17 19:10:34

标签: php

我有这个

 echo ' <a href=" '.$row["noti_link"] .' " class="notification-success active">';

我希望此查询在用户单击此

时运行
mysqli_query("UPDATE ehr_noti SET noti_check=0, noti_check2=0 where noti_id = ".$row['noti_id']." ")

这方面有什么诀窍吗?我不想通过POST或GET传递变量然后运行相应链接的查询。我只想在进入下一页之前运行查询。
编辑原因
我有一个循环。在我的MYSQL中有一个文本和链接列。这是一个通知栏。因此,当用户点击this时,that是否接受func binarytotype <T> (_ value: [UInt8], _ : T.Type) -> T { return value.withUnsafeBufferPointer { UnsafeRawPointer($0.baseAddress!).load(as: T.self) } } func typetobinary <T> (_ value: T) -> [UInt8] { var v = value let size = MemoryLayout<T>.size return withUnsafePointer(to: &v) { $0.withMemoryRebound(to: UInt8.self, capacity: size) { Array(UnsafeBufferPointer(start: $0, count: size)) } } } let dd: Double = 1.23456 // -> 1.23456 let d = typetobinary(dd) // -> [56, 50, 143, 252, 193, 192, 243, 63] let i = binarytotype(d, Double.self) // -> 1.23456 ,他将被转移到其他链接。

1 个答案:

答案 0 :(得分:1)

你可以用ajax

来做
$("#id").on('click', function(){

   $.ajax({
      url: 'pathtoFile.php',
      dataType: 'json',
      success: function(data){
          //returned from php
      }
    });
 )};

http://api.jquery.com/jQuery.ajax/