Znote AAC rev 168 from subversion.

This commit is contained in:
Stefan Brannfjell
2013-08-28 23:46:32 +02:00
parent ba07284044
commit 21dea78379
160 changed files with 24752 additions and 0 deletions

2
layout/sub/blank.php Normal file
View File

@@ -0,0 +1,2 @@
<h1>Blank</h1>
<p>This is a blank sample page.</p>

13
layout/sub/houses.php Normal file
View File

@@ -0,0 +1,13 @@
<form action="houses.php" method="post">
Select town:<br>
<select name="selected">
<?php
foreach ($config['towns'] as $id => $name) echo '<option value="'. $id .'">'. $name .'</option>';
?>
</select>
<?php
/* Form file */
Token::create();
?>
<input type="submit" value="Fetch houses">
</form>