Math Php


Calling the Built-in abs() function


    $num = -321;
    $newnum = abs( $num );
    print $newnum;
?>