I use mysql...
this is what I do, this is just a basic overview you may have to change some things
<?php
$tid = mysql_escape_string($_GET['tid']); // tutorial id
$sql = mysql_query("SELECT * FROM `tutorials` WHERE `id` = '$tid'") or die (mysql_error());
$fetch = mysql_fetch_array($sql);
$num = 1;
$views = $fetch['views'];
$add = $num + $views;
mysql_query("UPDATE `tutorials` SET `views` = '$add' WHERE `id` = '$tid'") or die (mysql_error());
// etc etc
?>
Again, that is a basic overview of what I use. Someone else may have something else