HERE IT IS!
to make 'register' points....
in register.php, find this: (its right under the placed code)
Quote:
// insert custom user fields
|
and decide an amount to give...ill label it as XXX in the next bit (i use 1000 currently)
replace the above code with:
Quote:
// insert custom user fields
$pfield=$DB_site->query_first("SELECT pointfield FROM items_options");
$pointfield = "$pfield[0]";
$DB_site->query("UPDATE userfield SET $pointfield=XXX WHERE userid=$userid");
|