Definition: The SQRT () function calculates the square root of any inputed number.
Examples:
<?php
print sqrt (9);
// this would return the value 3
print sqrt (27.04);
//this would return the value 5.2
?>
By Angela Bradley, About.com Guide
<?php
print sqrt (9);
// this would return the value 3
print sqrt (27.04);
//this would return the value 5.2
?>