<?php include_once('/var2/php/config/def.php'); ?>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=Shift_JIS">
<meta http-equiv="Content-Style-Type" content="text/css">
<title>Simpley</title>
</head>
<body>
Simpley.
<br>
<a href="index11.php">NextPage</a><br>
<a href="index9.php">PrevPage</a><br>
<br>
<br>
<a href="index10.phps">SKINソース</a><br>
<br>


<br>
<% block(example,test10,) %>
<% skin(example,test10) %>

セレクトボックスの場合<br>
<form action="index10.php" method="get">
<select name="select">
<% each(select_box) %>
    <option value="<% rval(select_box/id) %>" <% if(select_box/id,==,$_REQUEST['select']) %>selected<% /if %>><% rval(select_box/value) %></option>
<% /each %>
</select>
<input type="submit" value="選択">
</form>

<br>
<br>

ラジオボタンの場合<br>
<form action="index10.php" method="get">
<% each(select_box) %>
<% rval(select_box/value) %>=<input type="radio" <% if(select_box/id,==,$_REQUEST['select']) %>checked<% /if %> name="select" value="<% rval(select_box/id) %>"><br>
<% /each %>
<input type="submit" value="選択">
</form>

<br />
<% /skin %>


</body>
</html>