<?
###################################################
#Copyright (C) 2002 Lihua Gao (hide@address.com)
#
#$Id: edit-profile-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 profile of <?=$usr_firstname." ".$usr_lastname ?> </h5></td>
</tr>
<!-- empty line -->
<TR><TD> </TD></TR>
<tr>
<td>
<table>
<TR><TD>
<?
if (isset($usr_email))
{
$sql = "UPDATE users SET ";
$sql .= "usr_updatedate=curdate(), ";
$sql .= "usr_firstname='".$usr_firstname."', ";
$sql .= "usr_lastname='".$usr_lastname."', ";
$sql .= "usr_address1='".$usr_address1."', ";
$sql .= "usr_address2='".$usr_address2."', ";
$sql .= "usr_address3='".$usr_address3."', ";
$sql .= "usr_city='".$usr_city."', ";
$sql .= "usr_postalcode='".$usr_postalcode."', ";
$sql .= "usr_email='".$usr_email."', ";
$sql .= "usr_country='".$usr_country."'";
$sql .= " WHERE usr_id=".$_SESSION['userid'];
//echo "sql: ".$sql."<br>";
$result = mysql_query($sql);
if ($result) {
$_SESSION['lastname'] = $usr_lastname;
$_SESSION['firstname'] = $usr_firstname;
echo "<P>Data was saved!</P>";
echo "<P>To see events please click <a href='show-events.php'>here</a>";
echo "<P>To show my profile please click <a href='edit-profile.php'>here</a>";
}
else {
echo mysql_error();
echo "<P><a href=\"javascript:history.go(-1)\">back</a>";
}
}
?>
</TD></TR>
</table>
</td>
</tr>
</table>
<?
include("footer.php");
?>