PDA

View Full Version : error code need help


squawell
12-30-2001, 03:30 AM
i use this code in member.php

$ppoopp=$DB_site->query_first("SELECT count(*) AS counter FROM attachment WHERE userid='$bbuserinfo[userid]'");
$xx=$ppoopp['counter'];

i want to count all attach file download times for each member

for example:

a user download 55times than in profile show up 55 times he download

but above the code it always show up the same number

i think it maybe some where wrong hope some one tell me

what's wrong with that code?? thankz~~:D

nuno
12-30-2001, 03:41 AM
try this
$ppoopp=$DB_site->query_first("SELECT count(*) AS count FROM attachment WHERE userid='$bbuserinfo[userid]'");
$xx=$ppoopp['counter'];

FWC
12-30-2001, 04:07 AM
Originally posted by squawell
i use this code in member.php

$ppoopp=$DB_site->query_first("SELECT count(*) AS counter FROM attachment WHERE userid='$bbuserinfo[userid]'");
$xx=$ppoopp['counter'];

i want to count all attach file download times for each member

for example:

a user download 55times than in profile show up 55 times he download

but above the code it always show up the same number

i think it maybe some where wrong hope some one tell me

what's wrong with that code?? thankz~~:D Try:$ppoopp=$DB_site->query_first("SELECT sum(counter) AS counter FROM attachment WHERE userid='$bbuserinfo[userid]'");
$xx=$ppoopp['counter'];

squawell
12-30-2001, 05:04 AM
thankz both of u --FWC and nuno~~~

but it still cann't work~~

the problem still here~~~

squawell
01-03-2002, 01:56 PM
have any idea with this?? :confused: :confused: :confused: