PDA

View Full Version : add 15 posts to everyone's count


dimava
12-25-2001, 05:27 AM
hi, how would I add 15 posts to everyone's post count sorta like a christmas present

thanks

Dimava

Sinclair
12-25-2001, 10:11 AM
Run this Query:
UPDATE user SET posts=posts+15;


Sinclair

dimava
12-25-2001, 10:37 AM
i'm kinda of a newbie in php, how do I run a query, and what do I need to do?

thanks

Dimava

Sinclair
12-25-2001, 10:44 AM
ok, here is a little script, you must put it into your admin directory:

<?php

require("../global.php");

$DB_site->query("UPDATE user SET posts=posts+15;");

?>


Sinclair

dimava
12-25-2001, 11:05 AM
thanks works great

Sinclair
12-25-2001, 11:08 AM
[QUOTE]Originally posted by dimava
thanks works great