* * -------------------------------------------- * * 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. * \**************************************************************************/ /* $Id$ */ if ($submit) { $phpgw_flags = array("noheader" => True, "nonavbar" => True); } $phpgw_flags["currentapp"] = "addressbook"; include("../header.inc.php"); if ($add_email) { list($fields["lastname"],$fields["firstname"]) = explode(" ", $name); $fields["email"] = $add_email; form("","add.php","Add",$fields); } else if (! $submit && ! $add_email) { form("","add.php","Add","","",""); } else { if ($bday_month == "" && $bday_day == "" && $bday_year == "") $bday = ""; else $bday = "$bday_month/$bday_day/$bday_year"; $access = $phpgw->accounts->array_to_string($access,$n_groups); $sql = "insert into addressbook (owner,access,firstname,lastname,email," . "hphone,wphone,fax,pager,mphone,ophone,street,city,state,zip,bday," . "notes,company) values ('" . $phpgw_info["user"]["userid"] . "','$access','" . addslashes($firstname). "','" . addslashes($lastname) . "','" . addslashes($email) . "','" . addslashes($hphone) . "','" . addslashes($wphone) . "','" . addslashes($fax) . "','" . addslashes($pager) . "','" . addslashes($mphone) . "','" . addslashes($ophone) . "','" . addslashes($street) . "','" . addslashes($city) . "','" . addslashes($state) . "','" . addslashes($zip) . "','" . addslashes($bday) . "','" . addslashes($notes) . "','" . addslashes($company). "')"; $phpgw->db->query($sql); Header("Location: " . $phpgw->link($phpgw_info["server"]["webserver_url"] . "/addressbook/", "cd=14")); } ?>
" . lang_common("Cancel"); ?>