fundraising_type!=$fundraising_type) $log[]="Changed sponsorship type from $current->fundraising_type to $fundraising_type"; if($current->value!=$value) $log[]="Changed sponsorship value from $current->value to $value"; if($current->status!=$status) $log[]="Changed sponsorship status from $current->status to $status"; if($current->probability!=$probability) $log[]="Changed sponsorship probability from $current->probability to $probability"; if(count($log)) { mysql_query("UPDATE sponsorships SET fundraising_type='$fundraising_type', value='$value', status='$status', probability='$probability' WHERE id='$sponsorships_id'"); foreach($log AS $l) { mysql_query("INSERT INTO sponsors_logs (sponsors_id,dt,users_id,log) VALUES ( '$current->sponsors_id', NOW(), '".$_SESSION['users_id']."', '".mysql_real_escape_string($l)."')"); } if(mysql_error()) echo error_(mysql_error()); else echo happy_("Saved sponsorship changes"); } else echo error_("No changes were made"); } else { echo error_("Required fields were missing, please try again".print_r($_POST,true)); } exit; } if($_POST['action']=="sponsorshipadd") { if($sponsors_id && $fundraising_type && $value) { mysql_query("INSERT INTO sponsorships (sponsors_id,fundraising_type,value,status,probability,year) VALUES ('$sponsors_id','$fundraising_type','$value','$status','$probability','{$config['FAIRYEAR']}')"); mysql_query("INSERT INTO sponsors_logs (sponsors_id,dt,users_id,log) VALUES ( '$sponsors_id', NOW(), '".$_SESSION['users_id']."', '".mysql_real_escape_string("Created sponsorship: type=$fundraising_type, value=\$$value, status=$status, probability=$probability%")."')"); happy_("Added new sponsorship"); } else error_("Required fields were missing, please try again"); if(mysql_error()) error_(mysql_error()); exit; } ?>