コード例 #1
0
						<label for="subject">Subject name:</label><br><br>
						<input type="text" id="subject" name="subject" /><br><br>
						<input type="submit" value="Create"/>
					</form>
				</fieldset>
				<fieldset>
					<legend>Subjects</legend>
					<form action="subjects.php" method="post">
					<table id="table-1" summary="tables">
						<thead>
							<tr>
								<th scope="col"></th>
								<th scope="col">Subject</th>
								<th scope="col">Edit</th>
							</tr>
						</thead>
						<tbody>
						<?php 
$subject->show();
?>
						</tbody>
					</table>
					<input type="submit" value="Delete Selected"/>
					</form>
				</fieldset>
			</div>
<?php 
//theme footer
include_once 'themes/' . THEME . '/footer.php';
//required includes at end
require_once 'inc/bottom.php';