on (release) {
midway = Number(_root.cstars)+1;
full = Number(midway)/2;
stars = Number(full);
npll = _root.now;
current = npll;
loadVariablesNum("update.php", "_blank", "POST");
_parent.gotoAndStop(3);
}
That code will post the variables
midway
full
stars
npllcurrent
to update.php in a new window, if you want it to be in the same window, chance "blank" to "self" if you want the operation to happen in the backround without users realizing it change "_blank" to "0".
In php, get the variables as you would in flahs.
If you need more help on the subject, i suggest searching for a high score board type of thing... Those usually use the post function.