[insert_php]
function isIphone($user_agent=NULL) {
if(!isset($user_agent)) {
$user_agent = isset($_SERVER[‘HTTP_USER_AGENT’]) ? $_SERVER[‘HTTP_USER_AGENT’] : ”;
}
return (strpos($user_agent, ‘iPhone’) !== FALSE);
}
function isAndroid($ua=NULL){
if(!isset($ua)){
$ua = strtolower(isset($_SERVER[‘HTTP_USER_AGENT’]) ? $_SERVER[‘HTTP_USER_AGENT’] : ”);
}
return (stripos($ua,’android’) !== false);
}

if(isIphone()) {
header(‘Location: https://itunes.apple.com/us/app/mulching-calculator/id938575573?ls=1&mt=8’);
exit();
}else if(isAndroid()) {
header(‘Location: https://play.google.com/store/apps/details?id=com.smartwaredesign.mulchcalculator’);
exit();
}
[/insert_php]

Mulch Calculator

We built this app as an estimation tool for sizing up how much mulch you’ll need for your yard, business, or project that you’re working on.  With this tool you are able to estimate rectangular, circular, and triangular areas.  All that you need to do is input the dimensions of the area in english or metric units and let the app calculate the volume of the areas for you!

It’s the perfect app for your own personal use or landscaping business!

Highlights from the app:

  • Estimate mulch in multiple area
  • Add any material name to the list of mulch to estimate
  • Identify rectangular, circular, or triangular area mulch beds
  • Use metric or English units with a flip of a toggle option
  • Get a total for all materials and individual area measurements
    • Estimates are divided into a total for each type/color mulch
  • Email estimates (PRO version only)
  • Save estimates for reference later (PRO version only)
  • View all past estimates (PRO version only)

Welcome Screen

Menu Options

Estimate Screen

Settings

Previous Estimates