Yes a crafty way to make ppl think youve got a rockin site.

Save this as cron_views.php, and upload it the the root directory of your site, set cronjob to run on it once a minuet, change the viewcount to whatever you want

ENJOY!

Code:
<?php

require_once( "include/config.php" );

//update view count by cron
$result = mysql_query("UPDATE video SET viewnumber = viewnumber + 43 ORDER BY RAND() LIMIT 500") 
or die(mysql_error());

?>