I’m building an application to help customer calculate various product prices. Right now I’m building a feature where user enters a single number to the application and submits a form. Based on that number, I would like to define another variables value. What I’d like to achieve If user input is number between 1-10, set variable number to 200. If
Tag: calculator
I need to figure out how much paint is needed to cover an area, I’m having problems with it. Help me or give me an idea
$width = 10; //width $length = 10; //Length $door = 2; // Door area $square = $width * $length – $door; //Total area to be painted $perMeter = 1; //Where $w is the amount of paint to paint 1m2 $total …