Voting

: min(seven, zero)?
(Example: nine)

The Note You're Voting On

Anonymous
20 years ago
If you need to convert RGB-color into HEX-color, use this:
<?php
function rgb2hex($rgb){
return
sprintf("%06X", $rgb);
}
$hex = rgb2hex(65280); // 00FF00
?>

<< Back to user notes page

To Top