การสร้างชุดข้อสอบด้วย fbml แล้วส่งให้กับเครื่องบริการภายนอก แล้วกลับมายังเว็บเพจของ fbml หรือหน้าใดที่ต้องการ
<input type=
"hidden"
name=
"redirect"
<b>1. ท่านรู้จักเว็บไซต์นี้ได้อย่างไร</b><br/>
<input type=
"radio"
name=
"q1"
value=
"1"
/>เพื่อนบอก<br/>
<input type=
"radio"
name=
"q1"
value=
"2"
/>ครูบอก<br/>
<input type=
"radio"
name=
"q1"
value=
"3"
checked />บังเอิญเข้ามา<br/>
<b>2. ท่านเพศอะไร</b><br/>
<input type=
"radio"
name=
"q2"
value=
"m"
checked />ชาย<br/>
<input type=
"radio"
name=
"q2"
value=
"f"
/>หญิง<br/>
<fb:editor-buttonset><fb:editor-button value=
"Send"
/></fb:editor-buttonset>
</fb:editor>
quiz.php
<?
echo
"<br />Q1 : "
.$_REQUEST[
"q1"
];
echo
"<br />Q2 : "
.$_REQUEST[
"q2"
];
echo
'<br /><a href="'
. $_REQUEST["redirect
"] . '"
>' . $_REQUEST[
"redirect"
] .
'</a>'
;
echo
'<meta http-equiv="refresh" content="5;url='
. $_REQUEST["redirect
"] . '"
/>';
?>