Skip to content

Instantly share code, notes, and snippets.

@chitoku-k
Last active August 29, 2015 14:09
Show Gist options
  • Save chitoku-k/500c6555d48f997474a1 to your computer and use it in GitHub Desktop.
Save chitoku-k/500c6555d48f997474a1 to your computer and use it in GitHub Desktop.
進捗どうですか
<?php
header('Content-Type: text/html; charset=UTF-8');
$progress = rand(0, 1) ? '進捗しました!' : '進捗ダメです(^_^;)';
?>
<!doctype html>
<html>
<head>
<meta name="viewport" content="initial-scale=1.0">
<title>進捗どうですか</title>
</head>
<body style="text-align: center;">
<h1><?php echo $progress ?></h1>
<p>リロードすると進捗するかもしれません。</p>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment