<?
###################################################
#Copyright (C) 2002 Lihua Gao (hide@address.com)
#
#$Id: edit-todo-action.php,v 1.1 2002/12/05 10:03:33 gaolihua Exp $
#
#This file is part of myTodos.
#
#myTodos 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.
#
#myTodos 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.
#
#You should have received a copy of the GNU General Public License
#along with myTodos; if not, write to the Free Software
#Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#####################################################
?>
<?
session_start();
require_once("config.php");
include("header.php");
?>
<table cellspacing="0" class="table3">
<tr class="rowtitle">
<td><h5>Update event with id: <?=$tds_id?> </h5></td>
</tr>
<!-- empty line -->
<TR><TD> </TD></TR>
<tr>
<td>
<?
$tds_datetype=substr($datetypes, 0, 1);
//if (isset($usr_email))
{
$sql = "UPDATE todos SET ";
$sql .= "tds_updatedate=curdate(), ";
$sql .= "tds_subject='".$tds_subject."', ";
$sql .= "tds_details='".$tds_details."', ";
$sql .= "tds_startdate='".$tds_startdate."', ";
$sql .= "tds_enddate='".$tds_enddate."', ";
$sql .= "tds_datetype='".$tds_datetype."', ";
$sql .= "tds_datestep='".$tds_datestep."', ";
$sql .= "tds_alertahead='".$tds_alertahead."'";
$sql .= " WHERE tds_id=".$tds_id;
//echo "sql: ".$sql."<br>";
$result = mysql_query($sql);
if ($result) {
echo "<P>Data was saved!</P>";
echo "<P>To see events please click <a href='show-events.php'>here</a>";
}
else {
echo mysql_error();
echo "<P><a href=\"javascript:history.go(-1)\">back</a>";
}
}
?>
</td>
</tr>
</table>
<?
include("footer.php");
?>