PHP顯示文章內容點選數加一

zrghs發表於2020-12-30

<?php


$articleid=$_GET['id'];

$conn = new mysqli("localhost", "root", "root", "xtrx.zrghs.com");

$result = $conn->query("select * from article where article_id=".$articleid);
$sql="update article set djs=djs+1 where article_id=".$articleid;

if ($result->num_rows > 0) {
// 輸出資料
while($row = $result->fetch_assoc()) {
echo $row["content"];
}
} else {
echo "0 結果";
}
$conn->query($sql);
$conn->close();

?>

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69990906/viewspace-2746413/,如需轉載,請註明出處,否則將追究法律責任。

相關文章