Thanks very much..
How do I set the third variable "pct" which is the result of calculation from "price" and "saleprice"?
since the three additional fields were done by another plugin, will this work?
PHP Code:
if ($type == 'thread')
{
$dataman->setr('price', $post['price']);
$dataman->setr('saleprice', $post['saleprice']);
$dataman->setr('pct', $post['pct']);
// etc.
}