You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
2.0 KiB
42 lines
2.0 KiB
<?php
|
|
/*********************************************************************************
|
|
** The contents of this file are subject to the vtiger CRM Public License Version 1.0
|
|
* ("License"); You may not use this file except in compliance with the License
|
|
* The Original Code is: vtiger CRM Open Source
|
|
* The Initial Developer of the Original Code is vtiger.
|
|
* Portions created by vtiger are Copyright (C) vtiger.
|
|
* All Rights Reserved.
|
|
*
|
|
********************************************************************************/
|
|
|
|
require_once("include/database/PearDatabase.php");
|
|
|
|
$organization_name=$_REQUEST['organization_name'];
|
|
$org_name=$_REQUEST['org_name'];
|
|
$organization_address=$_REQUEST['organization_address'];
|
|
$organization_city=$_REQUEST['organization_city'];
|
|
$organization_state=$_REQUEST['organization_state'];
|
|
$organization_code=$_REQUEST['organization_code'];
|
|
$organization_country=$_REQUEST['organization_country'];
|
|
$organization_phone=$_REQUEST['organization_phone'];
|
|
$organization_fax=$_REQUEST['organization_fax'];
|
|
$organization_website=$_REQUEST['organization_website'];
|
|
|
|
$sql="select * from organizationdetails where organizationame = '".$org_name."'";
|
|
$result = $adb->query($sql);
|
|
$org_name = $adb->query_result($result,0,'organizationame');
|
|
|
|
if($org_name=='')
|
|
{
|
|
$sql="insert into organizationdetails values( '".$organization_name ."','".$organization_address."','". $organization_city."','".$organization_state."','".$organization_code."','".$organization_country."','".$organization_phone."','".$organization_fax."','".$organization_website."')";
|
|
}
|
|
else
|
|
{
|
|
$sql="update organizationdetails set organizationame = '".$organization_name."', address = '".$organization_address."', city = '".$organization_city."', state = '".$organization_state."', code = '".$organization_code."', country = '".$organization_country."' , phone = '".$organization_phone."' , fax = '".$organization_fax."', website = '".$organization_website."' where organizationame = '".$org_name."'";
|
|
}
|
|
|
|
|
|
$adb->query($sql);
|
|
|
|
header("Location: index.php?module=Settings&action=OrganizationConfig");
|
|
?>
|
|
|