Skip to content

Instantly share code, notes, and snippets.

@mujeebishaque
Created September 23, 2017 15:41
Show Gist options
  • Save mujeebishaque/604342f1e90a4a8de181124289205bfd to your computer and use it in GitHub Desktop.
Save mujeebishaque/604342f1e90a4a8de181124289205bfd to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<title>Change Background Color</title>
</head>
<?php
function randomHex() {
$chars = 'ABCDEF0123456789';
$color = '#';
for ( $i = 0; $i < 6; $i++ ) {
$color .= $chars[rand(0, strlen($chars) - 1)];
}
return $color;
}
?>
<body style=" background-color: <?= randomHex(); ?>">
<?php header('refresh: 0.5; url=back_color.php'); ?>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment