<?php
if(isset($_POST['q1'])){
$ans = $_POST['q1'];
if($ans == 'a'){
$result = '相當有創意';
}else if($ans == 'b'){
$result = '相當屌';
}else if($ans == 'c'){
$result = '相當智障';
}else {
$result = '相當好笑';
}
}
?>
<html xmlins="http://www.w3.org/1999/xhtml" xmlns:fb="www.facebook.com/2008/fbml">
<meta http-equiv="Content-Type" content="text/html; />
<?php
if (isset($result)){
echo $result;
}else{
?>
<form method="post" action="?">
你最喜歡地球上的什麼?<br />
<input name="q1" type="radio" value="a" />A. 遊戲<br />
<input name="q1" type="radio" value="b" />B. 女人<br />
<input name="q1" type="radio" value="c" />C. 男人<br />
<input name="q1" type="radio" value="d" />D. 不是人<br />
<input type="hidden" name="signed_request" value="<?php echo $_REQUEST["signed_request"]; ?>" />
<input type="submit" name="btn" value="送出" />
</form>
<?php
}
?>