Sorry, the database is down right now. Try again later!
Error: $msg :"; $text .= mysql_error(); $text .= "\n"; die($text); } function addzero($currencystring) { $currencystring=chop($currencystring); $dot="."; $stringlength=strlen($currencystring)-1; //echo ("len=$stringlength ...."); $pos=strpos($currencystring, $dot); //echo "This is the $pos"; if (($pos == $stringlength-1) AND ($pos >0 )) { //echo ("found . at position $pos ...."); // echo ("adding a zero"); $currencystring=$currencystring."0"; } return $currencystring; } ?>