Last active
August 29, 2015 14:09
-
-
Save chitoku-k/500c6555d48f997474a1 to your computer and use it in GitHub Desktop.
進捗どうですか
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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