PHP code:
public static function formatPrice($data)
{
$price = ($data / 100);
return "€" . number_format($price, 2, ",", ".");
}
public static function formatPrice($data)
{
$price = ($data / 100);
return "€" . number_format($price, 2, ",", ".");
}
Randy Flujowa op 27/05/2015 10:03:23
Een hele library includen voor 2 regels code?