features
はありません 、contributions
、likes
あなたの状態で。また、パラメータuser_ID
として間違った名前を付けています 。
<?php
$stmt = $dbh->prepare("SELECT sum(features + contributions + likes) AS total FROM points WHERE (ID = :user_ID)");
$stmt->bindParam(':user_ID', $user_ID, PDO::PARAM_INT);
$stmt->execute();
$row = $stmt->fetch(PDO::FETCH_ASSOC);
echo '<h3>'. $user_ID .' have '. $row['total'] .' Points.</h3>';
?>