Voting

: zero plus three?
(Example: nine)

The Note You're Voting On

Anonymous
20 years ago
If you need to generate random HEX-color, use this:
<?php
function random_hex_color(){
return
sprintf("%02X%02X%02X", mt_rand(0, 255), mt_rand(0, 255), mt_rand(0, 255));
}
$hex = random_hex_color(); // 09B826
?>

Enjoy.

<< Back to user notes page

To Top