<p>this is the default section which will list all the types of buildings avaible</p>
<p>res (type 4)<br>
list types<br>
in sub sections add a check for building above current level of player<?
connectdb();
//get info of user to check for level
$userms = mysql_query("SELECT * FROM usr WHERE usr='$user'");
$userm = mysql_fetch_array($userms);
$typem = mysql_query("SELECT * FROM buildingtype WHERE type='$btype'");
?></p>
<table width="600" border="1" cellspacing="0" cellpadding="0" bordercolor="#000000">
<tr align="center">
<td width="37">ID</td>
<td width="251">Name</td>
<td width="106">Level Required</td>
<td width="96">Cost</td>
<td width="96">Build?</td>
</tr>
<?
while ($type = mysql_fetch_array($typem)){
?>
<tr align="center">
<td width="37"><?echo $type[0];?></td>
<td width="251"><?echo $type[2];?></td>
<td width="106"><?echo $type[6];?></td>
<td width="96">$<?echo $type[7];?></td>
<td width="96"><a href="/world/location/changeland2.php?&town=<?echo $town;?>&vert=<?echo $vert;?>&horz=<?echo $horz;?>&btype=<?echo $type[0];?>">Build
This</a></td>
</tr>
<?}?>
</table>