<?php
Header('Location: test_multifield.php');
exit;
/**************************************************************************\
* lowbatCMS - a test application *
* Written and (c) 2006 by Samuel Talleux<hide@address.com> *
* -------------------------------------------- *
* This program is free software; you can redistribute it and/or modify it *
* under the terms of the GNU General Public License as published by the *
* Free Software Foundation; either version 2 of the License, or (at your *
* option) any later version. *
***************************************************************************/
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr">
<head>
<title>lowbatCMS</title>
</head>
<body>
<a href="book.php">Create a new book</a><br />
<fieldset>
<legend><b>Edit book id=2 by POST</b></legend>
<form action="book.php" method="post">
<input type="hidden" name="action" value="editbook" />
<input type="hidden" name="back" value="index.php" />
<input type="hidden" name="id" value="2" />
<input type="submit" name="mode" value="edit" />
</form>
</fieldset>
<a href="book.php?id=2&lowbatcms_mode=edit">Edit book with id=2 by GET</a><br />
<a href="book.php?id=2">Show book with id=2 by GET</a><br />
<a href="book.php">book.php</a><br />
<a href="booklist.php">Show all books</a><br />
<a href="workcycle.php">Basic work cycle</a>: Display an Entry, going from Display to Edit mode, and from there to Input mode. Preview or submit the edited Entry.<br />
<a href="testbrackets.php">Test chaining of function calls and objects</a><br />
<a href="test_multifield.php">Test MultiFields</a><br />
</body>
</html>