View Single Post
Old 02-14-2008, 09:33 AM   #14 (permalink)
ReSpawN
The Frequenter
 
ReSpawN's Avatar
 
Join Date: Nov 2007
Location: Netherlands
Posts: 460
Thanks: 49
ReSpawN is on a distinguished road
Default

PHP Code:
$postQuery mysql_query('SELECT * FROM post WHERE id = "'.$_GET['id'].'"');
$postFetch mysql_fetch_array($postQuery);

$newViews $postFetch['viewcount'] + 1;

mysql_query('UPDATE post SET viewcount = "'.$newViews.'" WHERE id = "'.$_GET['id'].'"'); 
Finito.
__________________
"Life is a bitch, take that bitch on a ride"
Send a message via MSN to ReSpawN
ReSpawN is offline  
Reply With Quote
The Following User Says Thank You to ReSpawN For This Useful Post:
Orc (02-14-2008)