Location: PHPKode > projects > Wombat Open Source > wombat/calendar/note_submit.php
<?
/* 
		WOMBAT Open Source
		Small business simple project management and customer relation management tool.

		Version		:
		Last Update	:

		Copyright (C) 2001-2003 Outdare Internet Service B.V.

		Wombat 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.

		Wombat is distributed in the hope that it will be useful, 
		but WITHOUT ANY WARRANTY; without even the implied warranty of
		MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 
		See the GNU General Public License for more details.
		(LICENSE file)

		You should have received a copy of the GNU General Public License 
		along with this program; if not, write to :

		Free Software Foundation, Inc., 
		59 Temple Place, Suite 330,
		Boston, MA 02111-1307 USA

		File Description : Form for submitting hours.
		
*/

include("../inc/local.inc.php");
include("../inc/wombat.inc.php");
include("../inc/header.inc.php");
#include("../inc/msg.inc.php");
?>
<h1><? echo "Enter Note"; ?></h1>

<div class="gegevens">
<?
@$event_id = (int)$_GET['event_id'];

echo "<form name=form method =post action=note_submit_action.php>";
echo "<table>";

echo "<tr>\n";
echo "<b>Enter Notes (max. 6 chars)</b></tr>";
echo "<tr><input type=text class='input' name=notes maxlength=10> \n";
echo "<input type=hidden name=event_id value =$event_id > ";
echo "</tr>\n";

echo "<tr>\n";
echo "<td align='center'><input class='button' type='submit' value='"; echo $words['save']; echo "' >";
echo "\t<input class='button' type='button' name='cancel' value="; echo $words['cancel']; echo " onClick='window.close()'></td>";
echo "</tr>\n";

echo "</table>";
echo "</form>";

Return current item: Wombat Open Source