random number function
Thursday, June 25th, 2009a random number function
function rand_num($lowest,$highest)
{
$rand_number = round(rand($lowest,$highest));
echo $rand_number;
}
a random number function
function rand_num($lowest,$highest)
{
$rand_number = round(rand($lowest,$highest));
echo $rand_number;
}
Octal to decimal conversion first
<?php
print(decoct(255) . “<br>”);
?>
and this is the octal to decimal version
<?php
print(octdec(”377″));
?>
Decimal to hexadecimal first
<?php
print(dechex(255) . “<br>”);
?>
and then hexadecimal to decimal
<?php
print(hexdec(”FF”));
?>
<?php
print(decbin(255) . “<br>”);
?>
<?php
print(bindec(”1111″));
?>