Re: [PHP-DB] page hit tracking

2004-02-07 Thread Jeremy
even simpler you could add a counter column to each vegetable table and
increment it...that will save you an extra table.

Jeremy

"Ricardo Lopes" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> you could create a counter table and store there the vegetable id  and the
> hits. After that each time you search for a vegetable, make an update to
the
> table.
>
> - Original Message -
> From: "js" <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Friday, February 06, 2004 8:18 AM
> Subject: [PHP-DB] page hit tracking
>
>
> i am using php MySQL and i want to know how i can make a hidden value for
> certain entries in a table and how many times they are called. for
instance,
> say i have a table of vegetables people can look at. the page displays all
> of the vegetables, and then it generates links to each one and if the user
> clicks on one then the page just calls itself and displays more
information
> about the vegetables. now, how do i make a counter where theres a field in
> the table where it increases by 1 everytime someone looks at a particular
> vegetable. i really am new to this so thank you for your help. thanks
> -james

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP-DB] page hit tracking

2004-02-06 Thread Ricardo Lopes
you could create a counter table and store there the vegetable id  and the
hits. After that each time you search for a vegetable, make an update to the
table.

- Original Message -
From: "js" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, February 06, 2004 8:18 AM
Subject: [PHP-DB] page hit tracking


i am using php MySQL and i want to know how i can make a hidden value for
certain entries in a table and how many times they are called. for instance,
say i have a table of vegetables people can look at. the page displays all
of the vegetables, and then it generates links to each one and if the user
clicks on one then the page just calls itself and displays more information
about the vegetables. now, how do i make a counter where theres a field in
the table where it increases by 1 everytime someone looks at a particular
vegetable. i really am new to this so thank you for your help. thanks
-james

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-DB] page hit tracking

2004-02-06 Thread js
i am using php MySQL and i want to know how i can make a hidden value for certain 
entries in a table and how many times they are called. for instance, say i have a 
table of vegetables people can look at. the page displays all of the vegetables, and 
then it generates links to each one and if the user clicks on one then the page just 
calls itself and displays more information about the vegetables. now, how do i make a 
counter where theres a field in the table where it increases by 1 everytime someone 
looks at a particular vegetable. i really am new to this so thank you for your help. 
thanks
-james