9 power can be expressed as :
Random numbers can be done this way
Ronding floating points numbers to any significant digits
PHP Code:
<?
echo pow(19, 5);
?>
PHP Code:
echo rand(); //this method is slow
echo mt_rand(); //this method is faster 4 times than the above one
PHP Code:
echo round("20.937353",2);
//we rounded the floating number to 2 significants digits