if you use php then this is the best code ever
first get your movie id and store in a var
like this:
$movie_id = $_GET['movie_id'];
and then update your movies table only one field when user view you movie post liky this query:
mysql_query("UPDATE your table name SET `views` = (views+1) WHERE movies_id = '$movie_id' LIMIT 1" );
and print query is ;
$query = "SELECT * FROM movies WHERE movies_id='".$movie_id."' LIMIT 1";
$exe = mysql_query($query, $con);
$row = mysql_fetch_assoc($exe);
and then echo your views for the users
like
<?php echo "Views" ." " .$row['views']; ?>