fname = $fname; $this->lname = $lname; $this->company = $company; $this->phone = $phone; $this->email = $email; $this->sysdesc = $sysdesc; } } if($_SERVER[REQUEST_METHOD]=='POST'){ $url = $_REQUEST['url']; error_log("First name: ".$_POST['fname']); error_log("Last name:".$_POST['lname']); error_log("Company: ". $_POST['company']); error_log("Phone: ".$_POST['phone']); error_log("Email: ".$_POST['email']); error_log("Desc: ".$_POST['sysdesc']); $temp = trim($_POST['sysdesc'], " \t\n\r\0\x0B "); $contact_info = new ContactInfo($_POST['fname'], $_POST['lname'], $_POST['company'],$_POST['phone'],$_POST['email'],$temp); set_contact_info($user, $contact_info); $returnMessage = "The contact information has been successfully modified."; } ?> Contact Information Backgrownd Data Processing