heres wut ive done so far:
PHP Code:
$connection= mysql_connect("$server","$dbuser","$userpass") or die("Connection to Data Base not successful,please try again.");
//* for $db type in the name of the database your going to be using
$db="anima823_gallery";
//*do not edit mysql_select_db
mysql_select_db("$db");
//*total views do not edit!//////////////////////////////////////////
$galleryviews= mysql_query("SELECT gal_views FROM gallery_index");
$vrow= mysql_fetch_assoc($galleryviews);
$views=$vrow[gal_views];
$tviews=++$views;
//*views update do not edit!///
//mysql_query("UPDATE gallery_index SET gal_views='$tviews'");
/////////////////////////////////////////////////////////////
//$grab_id= mysql_query("SELECT gal_id FROM gallery_idex");
//$id= mysql_fetch_object($grab_id)
if($id==1){
print "hi";
mysql_query("UPDATE gallery_index SET gal_views='$tviews' WHERE gal_name='test'");
}
if($id==2){
print "hi_#2";
mysql_query("UPDATE gallery_index SET gal_views='$tviews' WHERE gal_name='Character/Character Design'");
}
?>
so far ive made it so that each time you visit a specific gallery it will update the # of views for the gallery.