Log in

View Full Version : How can I integrate this into my postbit


CRego3D
05-08-2004, 10:26 PM
at my forums (linuxcult) I use nephp CMS for the main page

I asked the nephp programmer how coudl I place on the postbit the number of entries a user had done in the nephp system with a link to it's entries

he todl me I need to call this function


extract(mysql_fetch_array(mysql_query("SELECT COUNT(nnet_aid) AS `totalpost` FROM `lfora`.`nnet_articles` WHERE nnet_uid='[user_id_here]' AND nnet_title!='' AND nnet_activated='1'"),MYSQL_ASSOC));


does it make sence to anybody ? (I am not a programmer) .. how can I integrate this ?

cheers and thanks in advance for any help.

Carlos

mx3
05-10-2004, 01:52 AM
$nnetcount=extract(mysql_fetch_array(mysql_query("SELECT COUNT(nnet_aid) AS `totalpost` FROM `lfora`.`nnet_articles` WHERE nnet_uid='$post[userid]' AND nnet_title!='' AND nnet_activated='1'"),MYSQL_ASSOC));

place that in admin/functions.php somewhere... if someone else can help that'd be cool

then you just put $nnetcount[totalpost] in your postbit template wherever you want the number to be.

But thats just my quick solution, I probably missed something, I'm sure someone else can help with the rest ;)