I would like to add some php code in the "addition processing" field under "webform advanced settings" in the settings of a form i have, and i'm using the webform module. I want it so that when users submit their info to the webform they gain points (i have the userpoints module). any help with this?
ps. i need it so that they gain 5 points.

Comments

nathanjo’s picture

In Webform advanced settings -> Additional Processing: Just add like this:

<?php
userpoints_userpointsapi(5);  
?>

It will add 5 points for the current user after form submission.

See README.txt in the userpoints module.

mil1ion’s picture

Thank you so much!! You just don't know how much you've helped me!!!!