[size="3"]Look at the screenshot for example[/size]

As you see from the screenshot, i put two custom codes there :
$values["ExtendedPrice"] = ($values["UnitPrice"] * $values["Quantity"]) - (($values["Discount"]/100)*($values["UnitPrice"] * $values["Quantity"]));
return true;
and
$sql="select max(substr(OrderID,9)) as mx from BANGKE where substr(OrderID,7,2)=month(now()) order by mx";
$rs=CustomQuery($sql);
$data=db_fetch_array($rs);
$str="SO";
$str2=date("Ym");
$str3=($data["mx"]+1);
$values["OrderID"]="$str$str2".str_pad($str3, 5, 0, STR_PAD_LEFT);
return true;
The first custom code dosn't works..
If it is possible to add more the one custom code, how i configure it in PHPRUNNER?[/b]