Vasilis Posted September 23, 2012 Report Share Posted September 23, 2012 Actually after giving it more thought, I think I know what is going on -- "from" is a reserved word in MySQL (see http://dev.mysql.com/doc/refman/5.5/en/reserved-words.html). Personally, I would change that column in the database to something else, or use backticks to escape it (see the first solution on http://serverfault.com/questions/124083/mysql-how-to-quote-or-escape-field-names). hmmm, this makes more sense I will try to change it Quote Link to comment Share on other sites More sharing options...
Vasilis Posted September 23, 2012 Report Share Posted September 23, 2012 Actually after giving it more thought, I think I know what is going on -- "from" is a reserved word in MySQL (see http://dev.mysql.com/doc/refman/5.5/en/reserved-words.html). Personally, I would change that column in the database to something else, or use backticks to escape it (see the first solution on http://serverfault.com/questions/124083/mysql-how-to-quote-or-escape-field-names). Thanks a lot Ben, it works! It turns out that both 'from' and 'to' are reserved words in MySQL. Quote Link to comment Share on other sites More sharing options...
Vasilis Posted October 2, 2012 Report Share Posted October 2, 2012 Hi again, I have been trying to do something for the past 2 days with no luck. I would appreciate it if someone could help. Let's say I have "id" "first name", "last name", "amount" as columns. I have created a page (similar to view.php) where I have all the records of a specific first and last name. For example 'first name':John and 'last name':Smith with different 'amount' for each row. I want the "add new record" link to lead to a page where the first and last name are by default John and smith and you only have to insert the new amount. I tried to do it in the same way as the edit.php, getting the first and last name from the URL (new.php?firstname=John&lastname=Smith) but it didn't really work. Any ideas? thanks Quote Link to comment Share on other sites More sharing options...
falkencreative Posted October 2, 2012 Author Report Share Posted October 2, 2012 I tried to do it in the same way as the edit.php, getting the first and last name from the URL (new.php?firstname=John&lastname=Smith) but it didn't really work. How about you start a new topic, and include the code you are using? I can't help much without seeing the code. Assuming you are coding it correctly, what you want should be possible. Quote Link to comment Share on other sites More sharing options...
scottk Posted October 31, 2012 Report Share Posted October 31, 2012 Thanks Ben for this great code, its helped me "learn by doing". Can you show what code would be required to sort the table that is echoed out so that the table is displayed with the rows sorted by record id? This way the rows will stay in order of creation and the newest record will always be at the end. Thanks for your help! Quote Link to comment Share on other sites More sharing options...
aksun Posted February 16, 2013 Report Share Posted February 16, 2013 Here's my problem. When somebody adds new records, it goes at the bottom of the table after submitting. How can I change that the record is going to top of the table? Quote Link to comment Share on other sites More sharing options...
aksun Posted March 3, 2013 Report Share Posted March 3, 2013 Sorry. I just look at it and the record was going top of the table. Quote Link to comment Share on other sites More sharing options...
administrator Posted March 3, 2013 Report Share Posted March 3, 2013 You could effect the sort order using simple SQL: SELECT column_name(s) FROM table_name ORDER BY column_name(s) ASC|DESC So a specific example would be: SELECT * FROM Persons ORDER BY LastName DESC DESC = descending ASC = ascending Stef Quote Link to comment Share on other sites More sharing options...
aksun Posted March 23, 2013 Report Share Posted March 23, 2013 Thanks stef! Quote Link to comment Share on other sites More sharing options...
stephen Posted April 20, 2013 Report Share Posted April 20, 2013 Hey, great code, i have been trying to add another column for the phone number and when i change the code it doesn't update or add records, it doesn't give any errors just nothing gets entered in the database. Head is wrecked trying to fix it. Can anybody see where i am going wrong. <?php /* Allows the user to both create new records and edit existing records */ // connect to the database include("connect-db.php"); // creates the new/edit record form // since this form is used multiple times in this file, I have made it a function that is easily reusable function renderForm($first = '', $last ='', $phone ='', $error = '', $id = '') { ?> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <title> <?php if ($id != '') { echo "Edit Record"; } else { echo "New Record"; } ?> </title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> </head> <body> <h1><?php if ($id != '') { echo "Edit Record"; } else { echo "New Record"; } ?></h1> <?php if ($error != '') { echo "<div style='padding:4px; border:1px solid red; color:red'>" . $error . "</div>"; } ?> <form action="" method="post"> <div> <?php if ($id != '') { ?> <input type="hidden" name="id" value="<?php echo $id; ?>" /> <p>ID: <?php echo $id; ?></p> <?php } ?> <strong>First Name: *</strong> <input type="text" name="firstname" value="<?php echo $first; ?>"/><br/> <strong>Last Name: *</strong> <input type="text" name="lastname" value="<?php echo $last; ?>"/> <strong>Phone Number: *</strong> <input type="text" name="phonenumber" value="<?php echo $phone; ?>"/> <p>* required</p> <input type="submit" name="submit" value="Submit" /> </div> </form> </body> </html> <?php } /* EDIT RECORD */ // if the 'id' variable is set in the URL, we know that we need to edit a record if (isset($_GET['id'])) { // if the form's submit button is clicked, we need to process the form if (isset($_POST['submit'])) { // make sure the 'id' in the URL is valid if (is_numeric($_POST['id'])) { // get variables from the URL/form $id = $_POST['id']; $firstname = htmlentities($_POST['firstname'], ENT_QUOTES); $lastname = htmlentities($_POST['lastname'], ENT_QUOTES); $phonenumber = htmlentities($_POST['phonenumber'], ENT_QUOTES); // check that firstname and lastname are both not empty if ($firstname == '' || $lastname == '' || $phonenumber == '') { // if they are empty, show an error message and display the form $error = 'ERROR: Please fill in all required fields!'; renderForm($firstname, $lastname, $phonenumber, $error, $id); } else { // if everything is fine, update the record in the database if ($stmt = $mysqli->prepare("UPDATE players SET firstname = ?, lastname = ?, phonenumber = ? WHERE id= ?")) { $stmt->bind_param("ssi", $firstname, $lastname, $phonenumber, $id); $stmt->execute(); $stmt->close(); } // show an error message if the query has an error else { echo "ERROR: could not prepare SQL statement."; } // redirect the user once the form is updated header("Location: view.php"); } } // if the 'id' variable is not valid, show an error message else { echo "Error!"; } } // if the form hasn't been submitted yet, get the info from the database and show the form else { // make sure the 'id' value is valid if (is_numeric($_GET['id']) && $_GET['id'] > 0) { // get 'id' from URL $id = $_GET['id']; // get the recod from the database if($stmt = $mysqli->prepare("SELECT * FROM players WHERE id=?")) { $stmt->bind_param("i", $id); $stmt->execute(); $stmt->bind_result($id, $firstname, $lastname, $phonenumber); $stmt->fetch(); // show the form renderForm($firstname, $lastname, $phonenumber, NULL, $id); $stmt->close(); } // show an error if the query has an error else { echo "Error: could not prepare SQL statement"; } } // if the 'id' value is not valid, redirect the user back to the view.php page else { header("Location: view.php"); } } } /* NEW RECORD */ // if the 'id' variable is not set in the URL, we must be creating a new record else { // if the form's submit button is clicked, we need to process the form if (isset($_POST['submit'])) { // get the form data $firstname = htmlentities($_POST['firstname'], ENT_QUOTES); $lastname = htmlentities($_POST['lastname'], ENT_QUOTES); $phonenumber = htmlentities($_POST['phonenumber'], ENT_QUOTES); // check that firstname and lastname are both not empty if ($firstname == '' || $lastname == '' || $phonenumber == '') { // if they are empty, show an error message and display the form $error = 'ERROR: Please fill in all required fields!'; renderForm($firstname, $lastname, $phonenumber, $error); } else { // insert the new record into the database if ($stmt = $mysqli->prepare("INSERT players (firstname, lastname, phonenumber) VALUES (?, ?, ?)")) { $stmt->bind_param("ss", $firstname, $lastname, $phonenumber); $stmt->execute(); $stmt->close(); } // show an error if the query has an error else { echo "ERROR: Could not prepare SQL statement."; } // redirec the user header("Location: view.php"); } } // if the form hasn't been submitted yet, show the form else { renderForm(); } } // close the mysqli connection $mysqli->close(); ?> Quote Link to comment Share on other sites More sharing options...
Kevinstan Posted June 19, 2013 Report Share Posted June 19, 2013 Great script. I am trying to add a simple search function to the top of the view.php page that will search the database and show the results with the same view in table form along with the edit and delete button still. I would like for it to be searchable by id number and first name and last name. I cannot get it to work. Any help would be very much appreciated. Thanks in advance. Quote Link to comment Share on other sites More sharing options...
Modem Posted July 9, 2013 Report Share Posted July 9, 2013 I tried to copy and paste into the editor but only to run my view.php file, it was not working properly. The browser kept on downloading it and no progressive work was done to my side. I do not know were the problem came from! Quote Link to comment Share on other sites More sharing options...
thanhhung1324 Posted July 10, 2013 Report Share Posted July 10, 2013 Hello, This is good lesson! THank you! But I have some problem. CREATE TABLE `players` ( `id` int(11) NOT NULL auto_increment, --> ID is INTERGER. `firstname` varchar(32) NOT NULL, `lastname` varchar(32) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=5 ; In my database, ID is VARCHAR, so with ID is character, this applicaiton is not woork. How I fix it? Thank you! Quote Link to comment Share on other sites More sharing options...
falkencreative Posted July 10, 2013 Author Report Share Posted July 10, 2013 Hello, This is good lesson! THank you! But I have some problem. CREATE TABLE `players` ( `id` int(11) NOT NULL auto_increment, --> ID is INTERGER. `firstname` varchar(32) NOT NULL, `lastname` varchar(32) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=5 ; In my database, ID is VARCHAR, so with ID is character, this applicaiton is not woork. How I fix it? Thank you! If you are going to use the auto_increment feature, you need to use an INT. It can't be a VARCHAR. I don't know how you've built your application, but if you want to use auto_increment, you'll have to change the database, and potentially how your application works. Quote Link to comment Share on other sites More sharing options...
thanhhung1324 Posted July 12, 2013 Report Share Posted July 12, 2013 If you are going to use the auto_increment feature, you need to use an INT. It can't be a VARCHAR. I don't know how you've built your application, but if you want to use auto_increment, you'll have to change the database, and potentially how your application works. Thanks your help. My App. is WORK MANAGER With WORK ID is VARCHAR ( because My Work is begin by CUSTOMER). WORD ID is not INT. How to FIX it? () Quote Link to comment Share on other sites More sharing options...
falkencreative Posted July 12, 2013 Author Report Share Posted July 12, 2013 Thanks your help. My App. is WORK MANAGER With WORK ID is VARCHAR ( because My Work is begin by CUSTOMER). WORD ID is not INT. How to FIX it? () If you want to use auto_increment, you need to change to an int based ID. There's no way around that. Quote Link to comment Share on other sites More sharing options...
yoshee08 Posted August 1, 2013 Report Share Posted August 1, 2013 Hi Ben, I followed your script along (very nicely done by the way)and I had an issue for the edit.php page. As you can see, (after this) I added a few things to it. The delete page, view page all work fine, but when I go to this page (and yes, I have check words and spelling)it shows this (not the word places): Warning: Missing argument 6 for renderForm(), called in /home/content/26/8887926/html/Yoshee08/troop3/edit.php on line 110 and defined in /home/xxx/xxx/xxx/xxx/edit.php on line 9 ID: 2 Name: * [_____] type: *[_____] out: *[_____] out by who: *[_____] * Required SUBMIT(button is here) once i submit the form, it shows this error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'out = '1', outbywho = 'yoshee' WHERE id='2'' at line 1 What could be the problem? Heres the page code.. <?php /* EDIT.PHP Allows user to edit specific entry in database */ // creates the edit record form // since this form is used multiple times in this file, I have made it a function that is easily reusable function renderForm($id, $name, $type, $out, $outbywho, $error) { ?> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <title>Edit Record</title> </head> <body> <?php // if there are any errors, display them if ($error != '') { echo '<div style="padding:4px; border:1px solid red; color:red;">'.$error.'</div>'; } ?> <form action="" method="post"> <input type="hidden" name="id" value="<?php echo $id; ?>"/> <div> <p><strong>ID:</strong> <?php echo $id; ?></p> <strong>Name: *</strong> <input type="text" name="name" value="<?php echo $name; ?>"/><br/> <strong>type: *</strong> <input type="text" name="lastname" value="<?php echo $type; ?>"/><br/> <strong>out: *</strong> <input type="text" name="out" value="<?php echo $out; ?>"/><br/> <strong>out by who: *</strong> <input type="text" name="outbywho" value="<?php echo $outbywho; ?>"/><br/> <p>* Required</p> <input type="submit" name="submit" value="Submit"> </div> </form> </body> </html> <?php } // connect to the database include('connect-db.php'); // check if the form has been submitted. If it has, process the form and save it to the database if (isset($_POST['submit'])) { // confirm that the 'id' value is a valid integer before getting the form data if (is_numeric($_POST['id'])) { // get form data, making sure it is valid $id = $_POST['id']; $name = mysql_real_escape_string(htmlspecialchars($_POST['name'])); $type = mysql_real_escape_string(htmlspecialchars($_POST['type'])); $out = mysql_real_escape_string(htmlspecialchars($_POST['out'])); $outbywho = mysql_real_escape_string(htmlspecialchars($_POST['outbywho'])); if ($name == '') { // generate error message $error = 'ERROR: Please fill in all required fields!'; //error, display form renderForm($id, $name, $type, $out, $outbywho, $error); } else { // save the data to the database mysql_query("UPDATE equipment SET name = '$name', type = '$type', out = '$out', outbywho = '$outbywho' WHERE id='$id';") or die(mysql_error()); // once saved, redirect back to the view page header("Location: view.php"); } } else { // if the 'id' isn't valid, display an error echo 'Error!'; } } else // if the form hasn't been submitted, get the data from the db and display the form { // get the 'id' value from the URL (if it exists), making sure that it is valid (checing that it is numeric/larger than 0) if (isset($_GET['id']) && is_numeric($_GET['id']) && $_GET['id'] > 0) { // query db $id = $_GET['id']; $result = mysql_query("SELECT * FROM equipment WHERE id=$id") or die(mysql_error()); $row = mysql_fetch_array($result); // check that the 'id' matches up with a row in the databse if($row) { // get data from db $name = $row['name']; $type = $row['type']; $out = $row['out']; $outbywho = $row['outbywho']; // show form renderForm($id, $name, $type, $out, $outbywho); } else // if no match, display result { echo "No results!"; } } else // if the 'id' in the URL isn't valid, or if there is no 'id' value, display an error { echo 'Error!'; } } ?> Quote Link to comment Share on other sites More sharing options...
yoshee08 Posted August 2, 2013 Report Share Posted August 2, 2013 Also on the new.php page (code below), the form displays, but when it submits, it shows this. You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''equipment' ('name','type','out','outbywho') VALUES ('','','','' at line 1 <?php include_once("php_includes/check_login_status.php"); $sql = "SELECT COUNT(id) FROM users WHERE activated='1'"; $query = mysqli_query($db_conx, $sql); $row = mysqli_fetch_row($query); $usercount = $row[0]; function renderForm($id, $name, $type, $out, $outbywho, $error) { ?> <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Lincoln Troop 3</title> <link rel="icon" href="favicon.ico" type="image/x-icon"> <link rel="stylesheet" href="style/style.css"> <style type="text/css"> div#dynmsgbox{ background: #C4E6FF; border:#0F99FF 1px solid; line-height:2.0em; padding:20px; margin:20px;} </style> <script src="js/main.js"></script> </head> <body> <?php include_once("template_pageTop.php"); ?> <br><br> <br> <h3 style="width: 1342px; height: 70px; font-family:Monotype Corsiva;font-size: xx-large;color: #A70C0C;text-align:center;">Welcome to the website of BSA Troop 3 of Rochester</h3> <table style="width: 134%; height: 137px"> <tr> <div id="pageMiddle" style="clear:left; line-height:1.5em; width:92%; margin:40px auto;"> </div> <td style="width: 387px"> </td> <td style="width: 628px"> <?php } // connect to the database include('connect-db.php'); // check if the form has been submitted. If it has, start to process the form and save it to the database if (isset($_POST['submit'])) { // get form data, making sure it is valid $name = mysql_real_escape_string(htmlspecialchars($_POST['name'])); $type = mysql_real_escape_string(htmlspecialchars($_POST['type'])); $out = mysql_real_escape_string(htmlspecialchars($_POST['out'])); $outbywho = mysql_real_escape_string(htmlspecialchars($_POST['outbywho'])); // check to make sure both fields are entered if ($name == '' || $type == '') { // generate error message $error = 'ERROR: Please fill in all required fields!'; // if either field is blank, display the form again renderForm($name, $type, $out, $outbywho, $error); } else { // save the data to the database mysql_query("INSERT equipment SET name='$name', type='$type', out='$out', outbywho='$outbywho'") or die(mysql_error()); // once saved, redirect back to the view page header("Location: view.php"); } } else // if the form hasn't been submitted, display the form { renderForm('','','','','',''); } ?> <form action="" method="post"> <div> <strong>Name: *</strong> <input type="text" name="name" value="<?php echo $name; ?>" /><br/> <strong>Type: *</strong> <input type="text" name="type" value="<?php echo $type; ?>" /><br/> <strong>Out: *</strong> <input type="text" name="out" value="<?php echo $outbywho; ?>" /><br/> <strong>Out By Who: *</strong> <input type="text" name="outbywho" value="<?php echo $outbywho; ?>" /><br/> <p>* required</p> <input type="submit" name="submit" value="Submit"> </div> </form> </body> </html> </td> <td> </td> </tr> </table> <br> <br> <br> <br> <?php include_once("template_pageBottom.php"); ?> </body> </html> Quote Link to comment Share on other sites More sharing options...
HunterX Posted August 27, 2013 Report Share Posted August 27, 2013 thank you for this! i'm a newbie in programming but i'm willing to learn more. Quote Link to comment Share on other sites More sharing options...
perseas Posted October 5, 2013 Report Share Posted October 5, 2013 Hi all! nice tutorial. It helped to learn some things. I'm new in PHP/MySQL and I have a question. In case I want to modify the new.php to create a dynamic drop down list (with data from another table of the database) in the form, how can I use that? I tried but I failed. When Ι try to retrieve the data outside the form, it's OK, but when I'm trying to relocate the commands into the form this time, nothing happens! why is that? In the form, are there local variables or sth like that? Thanks in advance! Quote Link to comment Share on other sites More sharing options...
falkencreative Posted October 10, 2013 Author Report Share Posted October 10, 2013 Hi all! nice tutorial. It helped to learn some things. I'm new in PHP/MySQL and I have a question. In case I want to modify the new.php to create a dynamic drop down list (with data from another table of the database) in the form, how can I use that? I tried but I failed. When Ι try to retrieve the data outside the form, it's OK, but when I'm trying to relocate the commands into the form this time, nothing happens! why is that? In the form, are there local variables or sth like that? Thanks in advance! It sounds like you have the right general approach. I would do it by accessing the database outside the renderform() function, and creating an array of the data for the dropdown. I would then pass that array into the renderform function, adding the array as an extra parameter: function renderForm($first, $last, $new_data, $error) And then within the function, use that data to generate the dropdown. That's just the form portion, obviously -- you'd need to update the part of the code that handles form submission, and make sure you are saving the selected item from the dropdown correctly. Quote Link to comment Share on other sites More sharing options...
perseas Posted October 12, 2013 Report Share Posted October 12, 2013 It sounds like you have the right general approach. I would do it by accessing the database outside the renderform() function, and creating an array of the data for the dropdown. I would then pass that array into the renderform function, adding the array as an extra parameter: function renderForm($first, $last, $new_data, $error) And then within the function, use that data to generate the dropdown. That's just the form portion, obviously -- you'd need to update the part of the code that handles form submission, and make sure you are saving the selected item from the dropdown correctly. Thanks for the response! I've tried that, but nothing happened. As I mentioned previously, inside the renderform there's no problem, I can see the data. The problem is that when I reallocate the commands (cut-paste!), inside the form, nothing happens and I don't know why... Quote Link to comment Share on other sites More sharing options...
falkencreative Posted October 12, 2013 Author Report Share Posted October 12, 2013 Thanks for the response! I've tried that, but nothing happened. As I mentioned previously, inside the renderform there's no problem, I can see the data. The problem is that when I reallocate the commands (cut-paste!), inside the form, nothing happens and I don't know why... I'd suggest making a new topic for this, and including your code. Quote Link to comment Share on other sites More sharing options...
egcmx Posted October 25, 2013 Report Share Posted October 25, 2013 i'm using xampp. when i open view.php chrome and firefox are displaying this. when i open it on internet explorer it downloads the file. please help me. thanks! Quote Link to comment Share on other sites More sharing options...
falkencreative Posted October 25, 2013 Author Report Share Posted October 25, 2013 @egcmx - Why don't you start a new topic, and post the code from that file? My rough guess would be that you might have a typo -- perhaps an unnecessary ?>, or you've mixed up a quote. Are you sure you have the file located in the right place? And XAMPP is running, and you are viewing the file through localhost? Quote Link to comment Share on other sites More sharing options...
egcmx Posted October 26, 2013 Report Share Posted October 26, 2013 i already fixed it. i need to put the files inside a folder inside xampp/htdocs/ for the php codes to work. thanks by the way! Quote Link to comment Share on other sites More sharing options...
atisz Posted November 21, 2013 Report Share Posted November 21, 2013 Great script, well commented! Though, I have a problem implementing the edit and delete part. I followed your code and adapted to my needs, but seems that in both cases something is happening when getting 'id' from the URL and checking it is numeric. For example in edit.php // get the 'id' value from the URL (if it exists), making sure that it is valid (checking that it is numeric/larger than 0) if (isset($_GET['id']) && is_numeric($_GET['id']) && $_GET['id'] > 0) All I get is an error message // if the 'id' in the URL isn't valid, or if there is no 'id' value, display an error { echo 'Error!'; I don't know why is happening this, as in my create-table.sql 'id' is defined as id INT NOT NULL PRIMARY KEY AUTO_INCREMENT Quote Link to comment Share on other sites More sharing options...
ianhaney Posted November 26, 2013 Report Share Posted November 26, 2013 Hi I am using this coding in one of my sites and was working and has not stopped working Im getting the following errors on the new.php page Warning: Missing argument 4 for renderForm(), called in /home/sites/irhwebsites.com/public_html/sites/sgr/admin/new.php on line 101 and defined in /home/sites/irhwebsites.com/public_html/sites/sgr/admin/new.php on line 14 Warning: Missing argument 5 for renderForm(), called in /home/sites/irhwebsites.com/public_html/sites/sgr/admin/new.php on line 101 and defined in /home/sites/irhwebsites.com/public_html/sites/sgr/admin/new.php on line 14 Warning: Missing argument 6 for renderForm(), called in /home/sites/irhwebsites.com/public_html/sites/sgr/admin/new.php on line 101 and defined in /home/sites/irhwebsites.com/public_html/sites/sgr/admin/new.php on line 14 Warning: Missing argument 7 for renderForm(), called in /home/sites/irhwebsites.com/public_html/sites/sgr/admin/new.php on line 101 and defined in /home/sites/irhwebsites.com/public_html/sites/sgr/admin/new.php on line 14 Warning: Missing argument 8 for renderForm(), called in /home/sites/irhwebsites.com/public_html/sites/sgr/admin/new.php on line 101 and defined in /home/sites/irhwebsites.com/public_html/sites/sgr/admin/new.php on line 14 Warning: Missing argument 9 for renderForm(), called in /home/sites/irhwebsites.com/public_html/sites/sgr/admin/new.php on line 101 and defined in /home/sites/irhwebsites.com/public_html/sites/sgr/admin/new.php on line 14 Notice: Undefined variable: error in /home/sites/irhwebsites.com/public_html/sites/sgr/admin/new.php on line 29 The view.php page is not reading any of the records for some reason apart from the headings The new.php is not inserting any data apart from the id, ref and role data and nothing else Please help Ian Quote Link to comment Share on other sites More sharing options...
Bennn Posted December 18, 2013 Report Share Posted December 18, 2013 Hi Ben, great code. I altered your edit.php to the following: <?php /* EDIT.PHP Allows user to edit specific entry in database */ // creates the edit record form // since this form is used multiple times in this file, I have made it a function that is easily reusable function renderForm($id, $Volunteer, $CaseShortTitle, $CaseNumber, $HearingDate, $HearingTime, $Department, $JudgeCommissioner, $JMale, $JFemale, $PetitionersName, $PMale, $PFemale, $RespondentsName, $Male, $Female, $ExParteHearing, $LawandMotionHearing, $Hearing, $Trial, $SettlementConference, $COURTROOMAPPEARANCES, $PetitionerRepresented, $PetitionerProSe, $RespondentRepresented, $RespondentProSee, $AttorneyforChildrenName, $AMale, $AFemale, $Other2, $NonAppearanceReason, $AppearedbyphoneYes, $AppearedbyPhoneNo, $AppearedBySkypeYes, $AppearedbySkypeNo, $MinuteOrderProvidedatEndYes, $MinuteOrderprovidedatendNo, $ISSUELITIGATION, $Divorce, $ChildCustody, $ChildSupport, $ChildVisitation, $RestrainingOrder, $SpousalSupport, $Contempt, $AttorneyFees, $OtherNotes1, $CaseContinuedToFutureDateYes, $DateContHearing, $CaseContinuedToFutureDateNo, $stipulationsYes, $JudgeAskIfPartiesUnderstood, $JudgeAskIfPartiesUnderstoodNo, $stipulationsNo, $CHILDCUSTODYVISITSUPPORTORDERS, $CustodyVisitOrdersInPlacePriorToHearing, $JointPhysicalCustody, $JointLegalCustody, $LegalCustodyPetitioner, $LegalCustodyRespondent, $PhysicalcustodyPetitioner, $PhysicalCustodyRespondent, $UnsupervisedvisitationtoPetitioner, $UnsupervisedvisitationtoRepondent, $SupervisedvisitationtoPetitioner, $SupervisedvisitationtoRepondent, $RequesttochangecustodyYes, $MadebyPetitioner, $MadebyRespondent, $RequesttochangecustodyNo, $RequesttochangevisitationYes, $ChangeVisitationMadebyPetitioner, $ChangeVisitationMadebyRespondent, $RequesttochangevisitationNo, $Reasonforrequesttochangecustodyvisitation, $Domesticviolence, $Childabuseneglect, $Relocation, $Educationalissues, $Childbehavioralissues, $Childswishes, $Developmentalstageofchild, $DevelopmentOther, $ChangesmadetocustodyorderYes, $SolelegaltoPetitioner, $SolelegaltoRespondent, $JointlegaltoPetitioner, $JointlegaltoRespondent, $SolephysicaltoPetitioner, $SolephysicaltoRespondent, $JointphysicalprimarytoPetitioner, $JointphysicalprimarytoRespondent, $ChangesmadetovisitationorderYes, $IncreasedforPetitioner, $IncreasedforRespondent, $TerminatedforPetitioner, $TerminatedforRespondent, $SupervisedforPetitioner, $SupervisedforRespondent, $ChangestocustodyorvisitationNo, $PriororOrCurrentallegationsofDVCAYes, $PriororOrCurrentallegationsofDVCAYesNo, $PriororOrCurrentallegationsofDVCAYesUNK, $PartyrequestingincreasebehindsupportYes, $PartyrequestingincreasebehindsupportNo, $PartyrequestingincreasebehindsupportUNK, $WasapartyrequestingchangeinsupportYes, $Primarycustodialparent, $Otherparent, $Supportincreased, $Supportdecreased, $Nochangeinsupport, $WasapartyrequestingchangeinsupportNo, $WasapartyrequestingchangeinsupportUNK, $DUEPROCESSCONSTITUTIONALRIGHTS, $DidacourtreportermakearecordYes, $DidacourtreportermakearecordNo, $DidapartyminorattnyrequestobjectYes, $DidhearingproceedanywayYes, $DidhearingproceedanywayNo, $DidapartyminorattnyrequestobjectNo, $DidapartyasktoaudiovideotapeYes, $VideoTapegrantedYes, $VideoTapegrantedNo, $DidapartyasktoaudiovideotapeNo, $DidmeetingoccurinchambersYes, $Whowentintochambers, $Petitionersattorney, $Respondentsattorney, $Childsattorney1, $Petitioner1, $Respondent1, $Courtreporter, $Ifpetitionerrespondentexcludedwhy, $didjudgesealrecordYes, $didjudgesealrecordNo, $CourtappointeereportinfopresentedYes, $AuthorMediator, $AuthorEvaluatorinvestigator, $AuthorCourtappointedtherapist, $AuthorCoparentingcoordinator, $DidapartyobjecttoreportinfoYes, $Didnotreceivereport10daysprior, $Reportinfohearsay, $Reportinfonotauthenticated, $JudgeruledonobjectionSustained, $JudgeruledonobjectionOverruled, $WasobjectingpartyabletoexamineYes, $WasobjectingpartyabletoexamineNo, $WasahearingdatesetYes, $WasahearingdatesetNo, $DidapartyobjecttoreportinfoNo, $CourtappointeereportinfopresentedNo, $DidAnyOneElseRepresentYes, $Whopresentedtheinfo, $WasahearsayobjectionmadeYes, $Bywhom, $DidcourthearconsideranywayYes, $DidcourthearconsideranywayNo, $WasahearsayobjectionmadeNo, $DidAnyOneElseRepresentNo, $PartydeniedrighttoevidencewitnessYes, $Petitioner11, $Respondent11, $Reasonfordenial1, $FuturedatetopresentevidenceYes, $FuturedatetopresentevidenceNo, $PartydeniedrighttoevidencewitnessNo, $PartypreventedfromdiscoveryYes, $Reason, $PartypreventedfromdiscoveryNo, $PartiesgiveequalopportunitytospeakYes, $PartiesgiveequalopportunitytospeakNo, $Petitionergivenlessopportunity, $Respondentgivenlessopportunity, $PartydiscouragedfromspeakingpubliclyYes, $Whatwasjudgescomment, $PartydiscouragedfromspeakingpubliclyNo, $JUDICIALCONDUCTDEMEANOR, $WasaudienceaskedtoidentifyselfYes, $WasaudienceaskedtoidentifyselfNo, $WasanybodynotwitnessexcludedYes, $Whatreasongiven, $WasanybodynotwitnessexcludedNo, $WasjudgecourteousrespectfulYes, $WasjudgecourteousrespectfulNo, $Towhomwasjudgedisrespectful, $DescribeDisrespect, $Howdiddisrespectedpersonreact1, $DidanyoneelsespeakdisrespectfullyYes, $Whowasdisrespectful, $Whowasdisrespected, $WhoWasDisrespectedDescribe, $Howdiddisrespectedpersonreact, $HowdidJudgeHandleSituationDisrespect, $DidanyoneelsespeakdisrespectfullyNo, $DidanyoneraisevioceactaggressiveYes, $Whowasaggressive, $Whowasaggressedagainst, $WasWasAgressAgaintsDescribe, $Howdidaggressedagainstpersonreact, $HowdidjudgehandlesituationAggressed, $DidanyoneraisevoiceactaggressiveNo, $DidapartycryYes, $Whocried, $Howdidjudgerespond, $DidapartycryNo, $DidjudgeappearirritatedangryatproseYes, $Howdidjudgebehavewhatwassaid, $DidjudgeappearirritatedangryatproseNo, $DidjudgeappearirritatedangryatproseNA, $DidapartyseemincapableYes, $Describeconditionofparty, $Howdidjudgehandlesituation, $DidapartyseemincapableNo, $IMPRESSIONS, $DiditseemtobeevenplayingfieldYes, $DiditseemtobeevenplayingfieldNo, $Whowasdisadvantaged, $DisadvantageWhy, $DidproseseemdisadvantagedbyattnyYes, $DidproseseemdisadvantagedbyattnyNo, $DidproseseemdisadvantagedbyattnyNA, $WerebothheldtosamestandardYes, $WerebothheldtosamestandardNo, $Impressionwhynotheldtosamestandard, $FamiliaritybetweenanyonebiasYes, $FamilarityDescribe, $FamiliaritybetweenanyonebiasNo, $FavoritismantagonismbyjudgeYes, $FavDescribe, $FavoritismantagonismbyjudgeNo, $OtherRemarks, $ACCOMODATIONS, $WasaninterpreterpresentYes, $InterpreterforPetitioner, $InterpreterforRespondent, $WasaninterpreterpresentNo, $DideitherpartyaskforaccommodationYes, $RequestedbyPetitioner, $RequestedbyRespondent, $Whataccommodationswererequested, $Whataccommodationswereprovided, $DidthejudgerevealadiagnosisYes, $DidthejudgerevealadiagnosisNo, $DideitherpartyaskforaccommodationNo, $DideitherpartyaskforaccommodationUNK, $DOMESTICVIOLENCECV, $ProtectiveorderinplaceYes, $Petitionerprotected, $Respondentprotected, $Childrenprotected, $ProtectiveorderinplaceNo, $ProtectiveorderinplaceUNK, $RestrainedpartywanttoterminateYes, $WasprotectiveorderdismissedYes, $WasprotectiveorderdismissedNo, $RestrainedpartywanttoterminateNo, $DidanyoneraiseDVallegationsYesDV, $DVPetitionerraisedallegations, $Respondentraisedallegations, $Otherraisedallegations, $Physical1, $Sexual1, $Verbalpsychological1, $Stalking1, $OtherHarassments, $DidallegeraskforrestrainingorderYes, $RestrainingOrderGrantedYes, $JudgeexplainedconditionsYes, $JudgeexplainedconditionsNo, $JudgeorderweaponsturnedinYes, $JudgeorderweaponsturnedinNo, $Othersafetyorders, $SafetyOrderWasRequestGrantedNo, $SafetyOrderReasonfordenial, $PartywithprotectiontohavecontactYes, $Mediation, $Coparentingclasses, $Childexchanges, $Whereexchangestotakeplace, $ExchangeOther, $PartywithprotectiontohavecontactNo, $WasprotectedpartyaccusedYes, $WasprotectedpartyaccusedNo, $WereallegationsminimizedYes, $Whatgesturecomment, $WereallegationsminimizedNo, $ProvisiontoleavesafelyYes, $ProvisiontoleavesafelyNo, $DidanyoneraiseDVallegationsNo, $CHILDABUSE, $DidanyoneraiseallegationsofchildabuseYes, $Petitionerraisedallegations1, $Respondentraisedallegations2, $Otherraisedallegations2, $Physical5, $Sexual5, $Verbalpsychological, $Other5, $Age04, $Age510, $Age1114, $Ageover14, $WasallegationalreadyreportedtoLEYes, $WasallegationalreadyreportedtoLENo, $WasallegationalreadyreportedtoLEUNK, $WasinvestigativereportorderedYes, $MDITlawenforcement, $ChildProtectiveServices, $ProbationDept, $FCevaluatorName, $FCmediatorName, $FcOther, $IfsexabuseallegedFC3118orderedYes, $Nameofevalinvestigator, $IfsexabuseallegedFC3118orderedNo, $WasinvestigativereportorderedNo, $WaschildorderedtocontactwithabuserYes, $Unsupervisedcontact, $Contactsupervisedbyprofessional, $Contactsupervisedbynonproneutral, $Contactsupervisedbyfamilyfriend, $Parentchildtherapy, $ParentChildOther, $WaschildorderedtocontactwithabuserNo, $DidallegeraskforprotectionforchildYes, $WasrequestgrantedYes, $WasrequestgrantedNo, $PotectionReasonfordenial, $WasallegeraccusedYes, $Whoaccusedalleger, $WasallegeraccusedNo, $DidjudgeminimizeYes, $Describegesturescomments, $DidjudgeminimizeNo, $DidanyoneraiseallegationsofchildabuseNo, $CHILDSINPUT, $RequestchildappearYes, $Petitionerrequest, $Respondentrequest, $Childsattorney2, $AttorneyOther, $Judgeagreed1, $Judgedenied2, $Reasonfordenial2, $Judgereservedforfuturehearing, $Dateofhearing1, $AttorneyforchildYes, $Childsattorney, $GuardianAdLitem, $BestInterestAttorney, $Wherephysicallyincourtroom, $AppeartobealignedprejudicedYes, $Howshowfavoritism, $AppeartobealignedprejudicedNo, $DidchildsattorneygivereportinputYes, $WaschildpresenttotestifyYes, $Under10testified, $Age1014testified, $Over14testified, $Examinedonwitnessstand, $ObjectiontoopencourtquestionYes, $Whoobjected, $ObjectiontoopencourtquestionNo, $WaschildplacedunderoathYes, $WaschildplacedunderoathNo, $Judgequestionedchild1, $Childsattorneyquestionedchild1, $Petitionersattorneyquestionedchild1, $Petitionerquestionedchild1, $Respondentsattorneyquestionedchild1, $Respondentquestionedchild1, $PartydeniedabilitytoquestionYes, $Petitionerdenied, $Respondentdenied, $PartydeniedabilitytoquestionNo, $Howdidchildreacttoexamination, $Questionedinchambers, $DidapartyobjectYes, $DidapartyobjectNo, $Petitionerwenttochambers, $Petitionersattorneywenttochambers, $Respondentwenttochambers, $Respondentsattorneywenttochambers, $Childsattorneywenttochambers, $Courtreporterwenttochambers, $CourtpreventaccesstorecordYes, $CourtpreventaccesstorecordNo, $Questionedbyremoteaccess, $Atcourthousevideoseparatelocation, $AwayfromcourthousebySkype, $SkypeOther, $ChildunderoathYes, $ChildunderoathNo, $Judgequestionedchild, $Childsattorneyquestionedchild, $Petitionerquestionedchild, $Petitionersattorneyquestionedchild, $Respondentquestionedchild, $Respondentsattorneyquestionedchild, $Otherquestionedchild, $WasapartydeniedquestionchildYes, $Petitionerpreventedquestions, $Respondentpreventedquestions, $WasapartydeniedquestionchildNo, $WaschildpresenttotestifyNo, $RequestchildappearNo, $error) { ?> <html> <head> <title>Edit Record</title> </head> <body> <?php // if there are any errors, display them if ($error != '') { echo '<div style="padding:4px; border:1px solid red; color:red;">'.$error.'</div>'; } ?> <form action="" method="post"> <input type="hidden" name="id" value="<?php echo $id; ?>"/> <div> <p><strong>ID:</strong> <?php echo $id; ?></p> <strong>Volunteer: *</strong> <input type="text" name="Volunteer"value="<?php echo $Volunteer; ?>" /><br/> <strong>CaseShortTitle: *</strong> <input type="text" name="CaseShortTitle"value="<?php echo $CaseShortTitle; ?>" /><br/> <strong>CaseNumber: </strong> <input type="text" name="CaseNumber"value="<?php echo $CaseNumber; ?>" /><br/> <strong>HearingDate: </strong> <input type="text" name="HearingDate"value="<?php echo $HearingDate; ?>" /><br/> <strong>HearingTime: </strong> <input type="text" name="HearingTime"value="<?php echo $HearingTime; ?>" /><br/> <strong>Department: </strong> <input type="text" name="Department"value="<?php echo $Department; ?>" /><br/> <strong>JudgeCommissioner: </strong> <input type="text" name="JudgeCommissioner"value="<?php echo $JudgeCommissioner; ?>" /><br/> <strong>JMale: </strong> <input type="text" name="JMale"value="<?php echo $JMale; ?>" /><br/> <strong>JFemale: </strong> <input type="text" name="JFemale"value="<?php echo $JFemale; ?>" /><br/> <strong>PetitionersName: </strong> <input type="text" name="PetitionersName"value="<?php echo $PetitionersName; ?>" /><br/> <strong>PMale: </strong> <input type="text" name="PMale"value="<?php echo $PMale; ?>" /><br/> <strong>PFemale: </strong> <input type="text" name="PFemale"value="<?php echo $PFemale; ?>" /><br/> <strong>RespondentsName: </strong> <input type="text" name="RespondentsName"value="<?php echo $RespondentsName; ?>" /><br/> <strong>Male: </strong> <input type="text" name="Male"value="<?php echo $Male; ?>" /><br/> <strong>Female: </strong> <input type="text" name="Female"value="<?php echo $Female; ?>" /><br/> <strong>ExParteHearing: </strong> <input type="text" name="ExParteHearing"value="<?php echo $ExParteHearing; ?>" /><br/> <strong>LawandMotionHearing: </strong> <input type="text" name="LawandMotionHearing"value="<?php echo $LawandMotionHearing; ?>" /><br/> <strong>Hearing: </strong> <input type="text" name="Hearing"value="<?php echo $Hearing; ?>" /><br/> <strong>Trial: </strong> <input type="text" name="Trial"value="<?php echo $Trial; ?>" /><br/> <strong>SettlementConference: </strong> <input type="text" name="SettlementConference"value="<?php echo $SettlementConference; ?>" /><br/> <strong>COURTROOMAPPEARANCES: </strong> <input type="text" name="COURTROOMAPPEARANCES"value="<?php echo $COURTROOMAPPEARANCES; ?>" /><br/> <strong>PetitionerRepresented: </strong> <input type="text" name="PetitionerRepresented"value="<?php echo $PetitionerRepresented; ?>" /><br/> <strong>PetitionerProSe: </strong> <input type="text" name="PetitionerProSe"value="<?php echo $PetitionerProSe; ?>" /><br/> <strong>RespondentRepresented: </strong> <input type="text" name="RespondentRepresented"value="<?php echo $RespondentRepresented; ?>" /><br/> <strong>RespondentProSee: </strong> <input type="text" name="RespondentProSee"value="<?php echo $RespondentProSee; ?>" /><br/> <strong>AttorneyforChildrenName: </strong> <input type="text" name="AttorneyforChildrenName"value="<?php echo $AttorneyforChildrenName; ?>" /><br/> <strong>AMale: </strong> <input type="text" name="AMale"value="<?php echo $AMale; ?>" /><br/> <strong>AFemale: </strong> <input type="text" name="AFemale"value="<?php echo $AFemale; ?>" /><br/> <strong>Other2: </strong> <input type="text" name="Other2"value="<?php echo $Other2; ?>" /><br/> <strong>NonAppearanceReason: </strong> <input type="text" name="NonAppearanceReason"value="<?php echo $NonAppearanceReason; ?>" /><br/> <strong>AppearedbyphoneYes: </strong> <input type="text" name="AppearedbyphoneYes"value="<?php echo $AppearedbyphoneYes; ?>" /><br/> <strong>AppearedbyPhoneNo: </strong> <input type="text" name="AppearedbyPhoneNo"value="<?php echo $AppearedbyPhoneNo; ?>" /><br/> <strong>AppearedBySkypeYes: </strong> <input type="text" name="AppearedBySkypeYes"value="<?php echo $AppearedBySkypeYes; ?>" /><br/> <strong>AppearedbySkypeNo: </strong> <input type="text" name="AppearedbySkypeNo"value="<?php echo $AppearedbySkypeNo; ?>" /><br/> <strong>MinuteOrderProvidedatEndYes: </strong> <input type="text" name="MinuteOrderProvidedatEndYes"value="<?php echo $MinuteOrderProvidedatEndYes; ?>" /><br/> <strong>MinuteOrderprovidedatendNo: </strong> <input type="text" name="MinuteOrderprovidedatendNo"value="<?php echo $MinuteOrderprovidedatendNo; ?>" /><br/> <strong>ISSUELITIGATION: </strong> <input type="text" name="ISSUELITIGATION"value="<?php echo $ISSUELITIGATION; ?>" /><br/> <strong>Divorce: </strong> <input type="text" name="Divorce"value="<?php echo $Divorce; ?>" /><br/> <strong>ChildCustody: </strong> <input type="text" name="ChildCustody"value="<?php echo $ChildCustody; ?>" /><br/> <strong>ChildSupport: </strong> <input type="text" name="ChildSupport"value="<?php echo $ChildSupport; ?>" /><br/> <strong>ChildVisitation: </strong> <input type="text" name="ChildVisitation"value="<?php echo $ChildVisitation; ?>" /><br/> <strong>RestrainingOrder: </strong> <input type="text" name="RestrainingOrder"value="<?php echo $RestrainingOrder; ?>" /><br/> <strong>SpousalSupport: </strong> <input type="text" name="SpousalSupport"value="<?php echo $SpousalSupport; ?>" /><br/> <strong>Contempt: </strong> <input type="text" name="Contempt"value="<?php echo $Contempt; ?>" /><br/> <strong>AttorneyFees: </strong> <input type="text" name="AttorneyFees"value="<?php echo $AttorneyFees; ?>" /><br/> <strong>OtherNotes1: </strong> <input type="text" name="OtherNotes1"value="<?php echo $OtherNotes1; ?>" /><br/> <strong>CaseContinuedToFutureDateYes: </strong> <input type="text" name="CaseContinuedToFutureDateYes"value="<?php echo $CaseContinuedToFutureDateYes; ?>" /><br/> <strong>DateContHearing: </strong> <input type="text" name="DateContHearing"value="<?php echo $DateContHearing; ?>" /><br/> <strong>CaseContinuedToFutureDateNo: </strong> <input type="text" name="CaseContinuedToFutureDateNo"value="<?php echo $CaseContinuedToFutureDateNo; ?>" /><br/> <strong>stipulationsYes: </strong> <input type="text" name="stipulationsYes"value="<?php echo $stipulationsYes; ?>" /><br/> <strong>JudgeAskIfPartiesUnderstood: </strong> <input type="text" name="JudgeAskIfPartiesUnderstood"value="<?php echo $JudgeAskIfPartiesUnderstood; ?>" /><br/> <strong>JudgeAskIfPartiesUnderstoodNo: </strong> <input type="text" name="JudgeAskIfPartiesUnderstoodNo"value="<?php echo $JudgeAskIfPartiesUnderstoodNo; ?>" /><br/> <strong>stipulationsNo: </strong> <input type="text" name="stipulationsNo"value="<?php echo $stipulationsNo; ?>" /><br/> <strong>CHILDCUSTODYVISITSUPPORTORDERS: </strong> <input type="text" name="CHILDCUSTODYVISITSUPPORTORDERS"value="<?php echo $CHILDCUSTODYVISITSUPPORTORDERS; ?>" /><br/> <strong>CustodyVisitOrdersInPlacePriorToHearing: </strong> <input type="text" name="CustodyVisitOrdersInPlacePriorToHearing"value="<?php echo $CustodyVisitOrdersInPlacePriorToHearing; ?>" /><br/> <strong>JointPhysicalCustody: </strong> <input type="text" name="JointPhysicalCustody"value="<?php echo $JointPhysicalCustody; ?>" /><br/> <strong>JointLegalCustody: </strong> <input type="text" name="JointLegalCustody"value="<?php echo $JointLegalCustody; ?>" /><br/> <strong>LegalCustodyPetitioner: </strong> <input type="text" name="LegalCustodyPetitioner"value="<?php echo $LegalCustodyPetitioner; ?>" /><br/> <strong>LegalCustodyRespondent: </strong> <input type="text" name="LegalCustodyRespondent"value="<?php echo $LegalCustodyRespondent; ?>" /><br/> <strong>PhysicalcustodyPetitioner: </strong> <input type="text" name="PhysicalcustodyPetitioner"value="<?php echo $PhysicalcustodyPetitioner; ?>" /><br/> <strong>PhysicalCustodyRespondent: </strong> <input type="text" name="PhysicalCustodyRespondent"value="<?php echo $PhysicalCustodyRespondent; ?>" /><br/> <strong>UnsupervisedvisitationtoPetitioner: </strong> <input type="text" name="UnsupervisedvisitationtoPetitioner"value="<?php echo $UnsupervisedvisitationtoPetitioner; ?>" /><br/> <strong>UnsupervisedvisitationtoRepondent: </strong> <input type="text" name="UnsupervisedvisitationtoRepondent"value="<?php echo $UnsupervisedvisitationtoRepondent; ?>" /><br/> <strong>SupervisedvisitationtoPetitioner: </strong> <input type="text" name="SupervisedvisitationtoPetitioner"value="<?php echo $SupervisedvisitationtoPetitioner; ?>" /><br/> <strong>SupervisedvisitationtoRepondent: </strong> <input type="text" name="SupervisedvisitationtoRepondent"value="<?php echo $SupervisedvisitationtoRepondent; ?>" /><br/> <strong>RequesttochangecustodyYes: </strong> <input type="text" name="RequesttochangecustodyYes"value="<?php echo $RequesttochangecustodyYes; ?>" /><br/> <strong>MadebyPetitioner: </strong> <input type="text" name="MadebyPetitioner"value="<?php echo $MadebyPetitioner; ?>" /><br/> <strong>MadebyRespondent: </strong> <input type="text" name="MadebyRespondent"value="<?php echo $MadebyRespondent; ?>" /><br/> <strong>RequesttochangecustodyNo: </strong> <input type="text" name="RequesttochangecustodyNo"value="<?php echo $RequesttochangecustodyNo; ?>" /><br/> <strong>RequesttochangevisitationYes: </strong> <input type="text" name="RequesttochangevisitationYes"value="<?php echo $RequesttochangevisitationYes; ?>" /><br/> <strong>ChangeVisitationMadebyPetitioner: </strong> <input type="text" name="ChangeVisitationMadebyPetitioner"value="<?php echo $ChangeVisitationMadebyPetitioner; ?>" /><br/> <strong>ChangeVisitationMadebyRespondent: </strong> <input type="text" name="ChangeVisitationMadebyRespondent"value="<?php echo $ChangeVisitationMadebyRespondent; ?>" /><br/> <strong>RequesttochangevisitationNo: </strong> <input type="text" name="RequesttochangevisitationNo"value="<?php echo $RequesttochangevisitationNo; ?>" /><br/> <strong>Reasonforrequesttochangecustodyvisitation: </strong> <input type="text" name="Reasonforrequesttochangecustodyvisitation"value="<?php echo $Reasonforrequesttochangecustodyvisitation; ?>" /><br/> <strong>Domesticviolence: </strong> <input type="text" name="Domesticviolence"value="<?php echo $Domesticviolence; ?>" /><br/> <strong>Childabuseneglect: </strong> <input type="text" name="Childabuseneglect"value="<?php echo $Childabuseneglect; ?>" /><br/> <strong>Relocation: </strong> <input type="text" name="Relocation"value="<?php echo $Relocation; ?>" /><br/> <strong>Educationalissues: </strong> <input type="text" name="Educationalissues"value="<?php echo $Educationalissues; ?>" /><br/> <strong>Childbehavioralissues: </strong> <input type="text" name="Childbehavioralissues"value="<?php echo $Childbehavioralissues; ?>" /><br/> <strong>Childswishes: </strong> <input type="text" name="Childswishes"value="<?php echo $Childswishes; ?>" /><br/> <strong>Developmentalstageofchild: </strong> <input type="text" name="Developmentalstageofchild"value="<?php echo $Developmentalstageofchild; ?>" /><br/> <strong>DevelopmentOther: </strong> <input type="text" name="DevelopmentOther"value="<?php echo $DevelopmentOther; ?>" /><br/> <strong>ChangesmadetocustodyorderYes: </strong> <input type="text" name="ChangesmadetocustodyorderYes"value="<?php echo $ChangesmadetocustodyorderYes; ?>" /><br/> <strong>SolelegaltoPetitioner: </strong> <input type="text" name="SolelegaltoPetitioner"value="<?php echo $SolelegaltoPetitioner; ?>" /><br/> <strong>SolelegaltoRespondent: </strong> <input type="text" name="SolelegaltoRespondent"value="<?php echo $SolelegaltoRespondent; ?>" /><br/> <strong>JointlegaltoPetitioner: </strong> <input type="text" name="JointlegaltoPetitioner"value="<?php echo $JointlegaltoPetitioner; ?>" /><br/> <strong>JointlegaltoRespondent: </strong> <input type="text" name="JointlegaltoRespondent"value="<?php echo $JointlegaltoRespondent; ?>" /><br/> <strong>SolephysicaltoPetitioner: </strong> <input type="text" name="SolephysicaltoPetitioner"value="<?php echo $SolephysicaltoPetitioner; ?>" /><br/> <strong>SolephysicaltoRespondent: </strong> <input type="text" name="SolephysicaltoRespondent"value="<?php echo $SolephysicaltoRespondent; ?>" /><br/> <strong>JointphysicalprimarytoPetitioner: </strong> <input type="text" name="JointphysicalprimarytoPetitioner"value="<?php echo $JointphysicalprimarytoPetitioner; ?>" /><br/> <strong>JointphysicalprimarytoRespondent: </strong> <input type="text" name="JointphysicalprimarytoRespondent"value="<?php echo $JointphysicalprimarytoRespondent; ?>" /><br/> <strong>ChangesmadetovisitationorderYes: </strong> <input type="text" name="ChangesmadetovisitationorderYes"value="<?php echo $ChangesmadetovisitationorderYes; ?>" /><br/> <strong>IncreasedforPetitioner: </strong> <input type="text" name="IncreasedforPetitioner"value="<?php echo $IncreasedforPetitioner; ?>" /><br/> <strong>IncreasedforRespondent: </strong> <input type="text" name="IncreasedforRespondent"value="<?php echo $IncreasedforRespondent; ?>" /><br/> <strong>TerminatedforPetitioner: </strong> <input type="text" name="TerminatedforPetitioner"value="<?php echo $TerminatedforPetitioner; ?>" /><br/> <strong>TerminatedforRespondent: </strong> <input type="text" name="TerminatedforRespondent"value="<?php echo $TerminatedforRespondent; ?>" /><br/> <strong>SupervisedforPetitioner: </strong> <input type="text" name="SupervisedforPetitioner"value="<?php echo $SupervisedforPetitioner; ?>" /><br/> <strong>SupervisedforRespondent: </strong> <input type="text" name="SupervisedforRespondent"value="<?php echo $SupervisedforRespondent; ?>" /><br/> <strong>ChangestocustodyorvisitationNo: </strong> <input type="text" name="ChangestocustodyorvisitationNo"value="<?php echo $ChangestocustodyorvisitationNo; ?>" /><br/> <strong>PriororOrCurrentallegationsofDVCAYes: </strong> <input type="text" name="PriororOrCurrentallegationsofDVCAYes"value="<?php echo $PriororOrCurrentallegationsofDVCAYes; ?>" /><br/> <strong>PriororOrCurrentallegationsofDVCAYesNo: </strong> <input type="text" name="PriororOrCurrentallegationsofDVCAYesNo"value="<?php echo $PriororOrCurrentallegationsofDVCAYesNo; ?>" /><br/> <strong>PriororOrCurrentallegationsofDVCAYesUNK: </strong> <input type="text" name="PriororOrCurrentallegationsofDVCAYesUNK"value="<?php echo $PriororOrCurrentallegationsofDVCAYesUNK; ?>" /><br/> <strong>PartyrequestingincreasebehindsupportYes: </strong> <input type="text" name="PartyrequestingincreasebehindsupportYes"value="<?php echo $PartyrequestingincreasebehindsupportYes; ?>" /><br/> <strong>PartyrequestingincreasebehindsupportNo: </strong> <input type="text" name="PartyrequestingincreasebehindsupportNo"value="<?php echo $PartyrequestingincreasebehindsupportNo; ?>" /><br/> <strong>PartyrequestingincreasebehindsupportUNK: </strong> <input type="text" name="PartyrequestingincreasebehindsupportUNK"value="<?php echo $PartyrequestingincreasebehindsupportUNK; ?>" /><br/> <strong>WasapartyrequestingchangeinsupportYes: </strong> <input type="text" name="WasapartyrequestingchangeinsupportYes"value="<?php echo $WasapartyrequestingchangeinsupportYes; ?>" /><br/> <strong>Primarycustodialparent: </strong> <input type="text" name="Primarycustodialparent"value="<?php echo $Primarycustodialparent; ?>" /><br/> <strong>Otherparent: </strong> <input type="text" name="Otherparent"value="<?php echo $Otherparent; ?>" /><br/> <strong>Supportincreased: </strong> <input type="text" name="Supportincreased"value="<?php echo $Supportincreased; ?>" /><br/> <strong>Supportdecreased: </strong> <input type="text" name="Supportdecreased"value="<?php echo $Supportdecreased; ?>" /><br/> <strong>Nochangeinsupport: </strong> <input type="text" name="Nochangeinsupport"value="<?php echo $Nochangeinsupport; ?>" /><br/> <strong>WasapartyrequestingchangeinsupportNo: </strong> <input type="text" name="WasapartyrequestingchangeinsupportNo"value="<?php echo $WasapartyrequestingchangeinsupportNo; ?>" /><br/> <strong>WasapartyrequestingchangeinsupportUNK: </strong> <input type="text" name="WasapartyrequestingchangeinsupportUNK"value="<?php echo $WasapartyrequestingchangeinsupportUNK; ?>" /><br/> <strong>DUEPROCESSCONSTITUTIONALRIGHTS: </strong> <input type="text" name="DUEPROCESSCONSTITUTIONALRIGHTS"value="<?php echo $DUEPROCESSCONSTITUTIONALRIGHTS; ?>" /><br/> <strong>DidacourtreportermakearecordYes: </strong> <input type="text" name="DidacourtreportermakearecordYes"value="<?php echo $DidacourtreportermakearecordYes; ?>" /><br/> <strong>DidacourtreportermakearecordNo: </strong> <input type="text" name="DidacourtreportermakearecordNo"value="<?php echo $DidacourtreportermakearecordNo; ?>" /><br/> <strong>DidapartyminorattnyrequestobjectYes: </strong> <input type="text" name="DidapartyminorattnyrequestobjectYes"value="<?php echo $DidapartyminorattnyrequestobjectYes; ?>" /><br/> <strong>DidhearingproceedanywayYes: </strong> <input type="text" name="DidhearingproceedanywayYes"value="<?php echo $DidhearingproceedanywayYes; ?>" /><br/> <strong>DidhearingproceedanywayNo: </strong> <input type="text" name="DidhearingproceedanywayNo"value="<?php echo $DidhearingproceedanywayNo; ?>" /><br/> <strong>DidapartyminorattnyrequestobjectNo: </strong> <input type="text" name="DidapartyminorattnyrequestobjectNo"value="<?php echo $DidapartyminorattnyrequestobjectNo; ?>" /><br/> <strong>DidapartyasktoaudiovideotapeYes: </strong> <input type="text" name="DidapartyasktoaudiovideotapeYes"value="<?php echo $DidapartyasktoaudiovideotapeYes; ?>" /><br/> <strong>VideoTapegrantedYes: </strong> <input type="text" name="VideoTapegrantedYes"value="<?php echo $VideoTapegrantedYes; ?>" /><br/> <strong>VideoTapegrantedNo: </strong> <input type="text" name="VideoTapegrantedNo"value="<?php echo $VideoTapegrantedNo; ?>" /><br/> <strong>DidapartyasktoaudiovideotapeNo: </strong> <input type="text" name="DidapartyasktoaudiovideotapeNo"value="<?php echo $DidapartyasktoaudiovideotapeNo; ?>" /><br/> <strong>DidmeetingoccurinchambersYes: </strong> <input type="text" name="DidmeetingoccurinchambersYes"value="<?php echo $DidmeetingoccurinchambersYes; ?>" /><br/> <strong>Whowentintochambers: </strong> <input type="text" name="Whowentintochambers"value="<?php echo $Whowentintochambers; ?>" /><br/> <strong>Petitionersattorney: </strong> <input type="text" name="Petitionersattorney"value="<?php echo $Petitionersattorney; ?>" /><br/> <strong>Respondentsattorney: </strong> <input type="text" name="Respondentsattorney"value="<?php echo $Respondentsattorney; ?>" /><br/> <strong>Childsattorney1: </strong> <input type="text" name="Childsattorney1"value="<?php echo $Childsattorney1; ?>" /><br/> <strong>Petitioner1: </strong> <input type="text" name="Petitioner1"value="<?php echo $Petitioner1; ?>" /><br/> <strong>Respondent1: </strong> <input type="text" name="Respondent1"value="<?php echo $Respondent1; ?>" /><br/> <strong>Courtreporter: </strong> <input type="text" name="Courtreporter"value="<?php echo $Courtreporter; ?>" /><br/> <strong>Ifpetitionerrespondentexcludedwhy: </strong> <input type="text" name="Ifpetitionerrespondentexcludedwhy"value="<?php echo $Ifpetitionerrespondentexcludedwhy; ?>" /><br/> <strong>didjudgesealrecordYes: </strong> <input type="text" name="didjudgesealrecordYes"value="<?php echo $didjudgesealrecordYes; ?>" /><br/> <strong>didjudgesealrecordNo: </strong> <input type="text" name="didjudgesealrecordNo"value="<?php echo $didjudgesealrecordNo; ?>" /><br/> <strong>CourtappointeereportinfopresentedYes: </strong> <input type="text" name="CourtappointeereportinfopresentedYes"value="<?php echo $CourtappointeereportinfopresentedYes; ?>" /><br/> <strong>AuthorMediator: </strong> <input type="text" name="AuthorMediator"value="<?php echo $AuthorMediator; ?>" /><br/> <strong>AuthorEvaluatorinvestigator: </strong> <input type="text" name="AuthorEvaluatorinvestigator"value="<?php echo $AuthorEvaluatorinvestigator; ?>" /><br/> <strong>AuthorCourtappointedtherapist: </strong> <input type="text" name="AuthorCourtappointedtherapist"value="<?php echo $AuthorCourtappointedtherapist; ?>" /><br/> <strong>AuthorCoparentingcoordinator: </strong> <input type="text" name="AuthorCoparentingcoordinator"value="<?php echo $AuthorCoparentingcoordinator; ?>" /><br/> <strong>DidapartyobjecttoreportinfoYes: </strong> <input type="text" name="DidapartyobjecttoreportinfoYes"value="<?php echo $DidapartyobjecttoreportinfoYes; ?>" /><br/> <strong>Didnotreceivereport10daysprior: </strong> <input type="text" name="Didnotreceivereport10daysprior"value="<?php echo $Didnotreceivereport10daysprior; ?>" /><br/> <strong>Reportinfohearsay: </strong> <input type="text" name="Reportinfohearsay"value="<?php echo $Reportinfohearsay; ?>" /><br/> <strong>Reportinfonotauthenticated: </strong> <input type="text" name="Reportinfonotauthenticated"value="<?php echo $Reportinfonotauthenticated; ?>" /><br/> <strong>JudgeruledonobjectionSustained: </strong> <input type="text" name="JudgeruledonobjectionSustained"value="<?php echo $JudgeruledonobjectionSustained; ?>" /><br/> <strong>JudgeruledonobjectionOverruled: </strong> <input type="text" name="JudgeruledonobjectionOverruled"value="<?php echo $JudgeruledonobjectionOverruled; ?>" /><br/> <strong>WasobjectingpartyabletoexamineYes: </strong> <input type="text" name="WasobjectingpartyabletoexamineYes"value="<?php echo $WasobjectingpartyabletoexamineYes; ?>" /><br/> <strong>WasobjectingpartyabletoexamineNo: </strong> <input type="text" name="WasobjectingpartyabletoexamineNo"value="<?php echo $WasobjectingpartyabletoexamineNo; ?>" /><br/> <strong>WasahearingdatesetYes: </strong> <input type="text" name="WasahearingdatesetYes"value="<?php echo $WasahearingdatesetYes; ?>" /><br/> <strong>WasahearingdatesetNo: </strong> <input type="text" name="WasahearingdatesetNo"value="<?php echo $WasahearingdatesetNo; ?>" /><br/> <strong>DidapartyobjecttoreportinfoNo: </strong> <input type="text" name="DidapartyobjecttoreportinfoNo"value="<?php echo $DidapartyobjecttoreportinfoNo; ?>" /><br/> <strong>CourtappointeereportinfopresentedNo: </strong> <input type="text" name="CourtappointeereportinfopresentedNo"value="<?php echo $CourtappointeereportinfopresentedNo; ?>" /><br/> <strong>DidAnyOneElseRepresentYes: </strong> <input type="text" name="DidAnyOneElseRepresentYes"value="<?php echo $DidAnyOneElseRepresentYes; ?>" /><br/> <strong>Whopresentedtheinfo: </strong> <input type="text" name="Whopresentedtheinfo"value="<?php echo $Whopresentedtheinfo; ?>" /><br/> <strong>WasahearsayobjectionmadeYes: </strong> <input type="text" name="WasahearsayobjectionmadeYes"value="<?php echo $WasahearsayobjectionmadeYes; ?>" /><br/> <strong>Bywhom: </strong> <input type="text" name="Bywhom"value="<?php echo $Bywhom; ?>" /><br/> <strong>DidcourthearconsideranywayYes: </strong> <input type="text" name="DidcourthearconsideranywayYes"value="<?php echo $DidcourthearconsideranywayYes; ?>" /><br/> <strong>DidcourthearconsideranywayNo: </strong> <input type="text" name="DidcourthearconsideranywayNo"value="<?php echo $DidcourthearconsideranywayNo; ?>" /><br/> <strong>WasahearsayobjectionmadeNo: </strong> <input type="text" name="WasahearsayobjectionmadeNo"value="<?php echo $WasahearsayobjectionmadeNo; ?>" /><br/> <strong>DidAnyOneElseRepresentNo: </strong> <input type="text" name="DidAnyOneElseRepresentNo"value="<?php echo $DidAnyOneElseRepresentNo; ?>" /><br/> <strong>PartydeniedrighttoevidencewitnessYes: </strong> <input type="text" name="PartydeniedrighttoevidencewitnessYes"value="<?php echo $PartydeniedrighttoevidencewitnessYes; ?>" /><br/> <strong>Petitioner11: </strong> <input type="text" name="Petitioner11"value="<?php echo $Petitioner11; ?>" /><br/> <strong>Respondent11: </strong> <input type="text" name="Respondent11"value="<?php echo $Respondent11; ?>" /><br/> <strong>Reasonfordenial1: </strong> <input type="text" name="Reasonfordenial1"value="<?php echo $Reasonfordenial1; ?>" /><br/> <strong>FuturedatetopresentevidenceYes: </strong> <input type="text" name="FuturedatetopresentevidenceYes"value="<?php echo $FuturedatetopresentevidenceYes; ?>" /><br/> <strong>FuturedatetopresentevidenceNo: </strong> <input type="text" name="FuturedatetopresentevidenceNo"value="<?php echo $FuturedatetopresentevidenceNo; ?>" /><br/> <strong>PartydeniedrighttoevidencewitnessNo: </strong> <input type="text" name="PartydeniedrighttoevidencewitnessNo"value="<?php echo $PartydeniedrighttoevidencewitnessNo; ?>" /><br/> <strong>PartypreventedfromdiscoveryYes: </strong> <input type="text" name="PartypreventedfromdiscoveryYes"value="<?php echo $PartypreventedfromdiscoveryYes; ?>" /><br/> <strong>Reason: </strong> <input type="text" name="Reason"value="<?php echo $Reason; ?>" /><br/> <strong>PartypreventedfromdiscoveryNo: </strong> <input type="text" name="PartypreventedfromdiscoveryNo"value="<?php echo $PartypreventedfromdiscoveryNo; ?>" /><br/> <strong>PartiesgiveequalopportunitytospeakYes: </strong> <input type="text" name="PartiesgiveequalopportunitytospeakYes"value="<?php echo $PartiesgiveequalopportunitytospeakYes; ?>" /><br/> <strong>PartiesgiveequalopportunitytospeakNo: </strong> <input type="text" name="PartiesgiveequalopportunitytospeakNo"value="<?php echo $PartiesgiveequalopportunitytospeakNo; ?>" /><br/> <strong>Petitionergivenlessopportunity: </strong> <input type="text" name="Petitionergivenlessopportunity"value="<?php echo $Petitionergivenlessopportunity; ?>" /><br/> <strong>Respondentgivenlessopportunity: </strong> <input type="text" name="Respondentgivenlessopportunity"value="<?php echo $Respondentgivenlessopportunity; ?>" /><br/> <strong>PartydiscouragedfromspeakingpubliclyYes: </strong> <input type="text" name="PartydiscouragedfromspeakingpubliclyYes"value="<?php echo $PartydiscouragedfromspeakingpubliclyYes; ?>" /><br/> <strong>Whatwasjudgescomment: </strong> <input type="text" name="Whatwasjudgescomment"value="<?php echo $Whatwasjudgescomment; ?>" /><br/> <strong>PartydiscouragedfromspeakingpubliclyNo: </strong> <input type="text" name="PartydiscouragedfromspeakingpubliclyNo"value="<?php echo $PartydiscouragedfromspeakingpubliclyNo; ?>" /><br/> <strong>JUDICIALCONDUCTDEMEANOR: </strong> <input type="text" name="JUDICIALCONDUCTDEMEANOR"value="<?php echo $JUDICIALCONDUCTDEMEANOR; ?>" /><br/> <strong>WasaudienceaskedtoidentifyselfYes: </strong> <input type="text" name="WasaudienceaskedtoidentifyselfYes"value="<?php echo $WasaudienceaskedtoidentifyselfYes; ?>" /><br/> <strong>WasaudienceaskedtoidentifyselfNo: </strong> <input type="text" name="WasaudienceaskedtoidentifyselfNo"value="<?php echo $WasaudienceaskedtoidentifyselfNo; ?>" /><br/> <strong>WasanybodynotwitnessexcludedYes: </strong> <input type="text" name="WasanybodynotwitnessexcludedYes"value="<?php echo $WasanybodynotwitnessexcludedYes; ?>" /><br/> <strong>Whatreasongiven: </strong> <input type="text" name="Whatreasongiven"value="<?php echo $Whatreasongiven; ?>" /><br/> <strong>WasanybodynotwitnessexcludedNo: </strong> <input type="text" name="WasanybodynotwitnessexcludedNo"value="<?php echo $WasanybodynotwitnessexcludedNo; ?>" /><br/> <strong>WasjudgecourteousrespectfulYes: </strong> <input type="text" name="WasjudgecourteousrespectfulYes"value="<?php echo $WasjudgecourteousrespectfulYes; ?>" /><br/> <strong>WasjudgecourteousrespectfulNo: </strong> <input type="text" name="WasjudgecourteousrespectfulNo"value="<?php echo $WasjudgecourteousrespectfulNo; ?>" /><br/> <strong>Towhomwasjudgedisrespectful: </strong> <input type="text" name="Towhomwasjudgedisrespectful"value="<?php echo $Towhomwasjudgedisrespectful; ?>" /><br/> <strong>DescribeDisrespect: </strong> <input type="text" name="DescribeDisrespect"value="<?php echo $DescribeDisrespect; ?>" /><br/> <strong>Howdiddisrespectedpersonreact1: </strong> <input type="text" name="Howdiddisrespectedpersonreact1"value="<?php echo $Howdiddisrespectedpersonreact1; ?>" /><br/> <strong>DidanyoneelsespeakdisrespectfullyYes: </strong> <input type="text" name="DidanyoneelsespeakdisrespectfullyYes"value="<?php echo $DidanyoneelsespeakdisrespectfullyYes; ?>" /><br/> <strong>Whowasdisrespectful: </strong> <input type="text" name="Whowasdisrespectful"value="<?php echo $Whowasdisrespectful; ?>" /><br/> <strong>Whowasdisrespected: </strong> <input type="text" name="Whowasdisrespected"value="<?php echo $Whowasdisrespected; ?>" /><br/> <strong>WhoWasDisrespectedDescribe: </strong> <input type="text" name="WhoWasDisrespectedDescribe"value="<?php echo $WhoWasDisrespectedDescribe; ?>" /><br/> <strong>Howdiddisrespectedpersonreact: </strong> <input type="text" name="Howdiddisrespectedpersonreact"value="<?php echo $Howdiddisrespectedpersonreact; ?>" /><br/> <strong>HowdidJudgeHandleSituationDisrespect: </strong> <input type="text" name="HowdidJudgeHandleSituationDisrespect"value="<?php echo $HowdidJudgeHandleSituationDisrespect; ?>" /><br/> <strong>DidanyoneelsespeakdisrespectfullyNo: </strong> <input type="text" name="DidanyoneelsespeakdisrespectfullyNo"value="<?php echo $DidanyoneelsespeakdisrespectfullyNo; ?>" /><br/> <strong>DidanyoneraisevioceactaggressiveYes: </strong> <input type="text" name="DidanyoneraisevioceactaggressiveYes"value="<?php echo $DidanyoneraisevioceactaggressiveYes; ?>" /><br/> <strong>Whowasaggressive: </strong> <input type="text" name="Whowasaggressive"value="<?php echo $Whowasaggressive; ?>" /><br/> <strong>Whowasaggressedagainst: </strong> <input type="text" name="Whowasaggressedagainst"value="<?php echo $Whowasaggressedagainst; ?>" /><br/> <strong>WasWasAgressAgaintsDescribe: </strong> <input type="text" name="WasWasAgressAgaintsDescribe"value="<?php echo $WasWasAgressAgaintsDescribe; ?>" /><br/> <strong>Howdidaggressedagainstpersonreact: </strong> <input type="text" name="Howdidaggressedagainstpersonreact"value="<?php echo $Howdidaggressedagainstpersonreact; ?>" /><br/> <strong>HowdidjudgehandlesituationAggressed: </strong> <input type="text" name="HowdidjudgehandlesituationAggressed"value="<?php echo $HowdidjudgehandlesituationAggressed; ?>" /><br/> <strong>DidanyoneraisevoiceactaggressiveNo: </strong> <input type="text" name="DidanyoneraisevoiceactaggressiveNo"value="<?php echo $DidanyoneraisevoiceactaggressiveNo; ?>" /><br/> <strong>DidapartycryYes: </strong> <input type="text" name="DidapartycryYes"value="<?php echo $DidapartycryYes; ?>" /><br/> <strong>Whocried: </strong> <input type="text" name="Whocried"value="<?php echo $Whocried; ?>" /><br/> <strong>Howdidjudgerespond: </strong> <input type="text" name="Howdidjudgerespond"value="<?php echo $Howdidjudgerespond; ?>" /><br/> <strong>DidapartycryNo: </strong> <input type="text" name="DidapartycryNo"value="<?php echo $DidapartycryNo; ?>" /><br/> <strong>DidjudgeappearirritatedangryatproseYes: </strong> <input type="text" name="DidjudgeappearirritatedangryatproseYes"value="<?php echo $DidjudgeappearirritatedangryatproseYes; ?>" /><br/> <strong>Howdidjudgebehavewhatwassaid: </strong> <input type="text" name="Howdidjudgebehavewhatwassaid"value="<?php echo $Howdidjudgebehavewhatwassaid; ?>" /><br/> <strong>DidjudgeappearirritatedangryatproseNo: </strong> <input type="text" name="DidjudgeappearirritatedangryatproseNo"value="<?php echo $DidjudgeappearirritatedangryatproseNo; ?>" /><br/> <strong>DidjudgeappearirritatedangryatproseNA: </strong> <input type="text" name="DidjudgeappearirritatedangryatproseNA"value="<?php echo $DidjudgeappearirritatedangryatproseNA; ?>" /><br/> <strong>DidapartyseemincapableYes: </strong> <input type="text" name="DidapartyseemincapableYes"value="<?php echo $DidapartyseemincapableYes; ?>" /><br/> <strong>Describeconditionofparty: </strong> <input type="text" name="Describeconditionofparty"value="<?php echo $Describeconditionofparty; ?>" /><br/> <strong>Howdidjudgehandlesituation: </strong> <input type="text" name="Howdidjudgehandlesituation"value="<?php echo $Howdidjudgehandlesituation; ?>" /><br/> <strong>DidapartyseemincapableNo: </strong> <input type="text" name="DidapartyseemincapableNo"value="<?php echo $DidapartyseemincapableNo; ?>" /><br/> <strong>IMPRESSIONS: </strong> <input type="text" name="IMPRESSIONS"value="<?php echo $IMPRESSIONS; ?>" /><br/> <strong>DiditseemtobeevenplayingfieldYes: </strong> <input type="text" name="DiditseemtobeevenplayingfieldYes"value="<?php echo $DiditseemtobeevenplayingfieldYes; ?>" /><br/> <strong>DiditseemtobeevenplayingfieldNo: </strong> <input type="text" name="DiditseemtobeevenplayingfieldNo"value="<?php echo $DiditseemtobeevenplayingfieldNo; ?>" /><br/> <strong>Whowasdisadvantaged: </strong> <input type="text" name="Whowasdisadvantaged"value="<?php echo $Whowasdisadvantaged; ?>" /><br/> <strong>DisadvantageWhy: </strong> <input type="text" name="DisadvantageWhy"value="<?php echo $DisadvantageWhy; ?>" /><br/> <strong>DidproseseemdisadvantagedbyattnyYes: </strong> <input type="text" name="DidproseseemdisadvantagedbyattnyYes"value="<?php echo $DidproseseemdisadvantagedbyattnyYes; ?>" /><br/> <strong>DidproseseemdisadvantagedbyattnyNo: </strong> <input type="text" name="DidproseseemdisadvantagedbyattnyNo"value="<?php echo $DidproseseemdisadvantagedbyattnyNo; ?>" /><br/> <strong>DidproseseemdisadvantagedbyattnyNA: </strong> <input type="text" name="DidproseseemdisadvantagedbyattnyNA"value="<?php echo $DidproseseemdisadvantagedbyattnyNA; ?>" /><br/> <strong>WerebothheldtosamestandardYes: </strong> <input type="text" name="WerebothheldtosamestandardYes"value="<?php echo $WerebothheldtosamestandardYes; ?>" /><br/> <strong>WerebothheldtosamestandardNo: </strong> <input type="text" name="WerebothheldtosamestandardNo"value="<?php echo $WerebothheldtosamestandardNo; ?>" /><br/> <strong>Impressionwhynotheldtosamestandard: </strong> <input type="text" name="Impressionwhynotheldtosamestandard"value="<?php echo $Impressionwhynotheldtosamestandard; ?>" /><br/> <strong>FamiliaritybetweenanyonebiasYes: </strong> <input type="text" name="FamiliaritybetweenanyonebiasYes"value="<?php echo $FamiliaritybetweenanyonebiasYes; ?>" /><br/> <strong>FamilarityDescribe: </strong> <input type="text" name="FamilarityDescribe"value="<?php echo $FamilarityDescribe; ?>" /><br/> <strong>FamiliaritybetweenanyonebiasNo: </strong> <input type="text" name="FamiliaritybetweenanyonebiasNo"value="<?php echo $FamiliaritybetweenanyonebiasNo; ?>" /><br/> <strong>FavoritismantagonismbyjudgeYes: </strong> <input type="text" name="FavoritismantagonismbyjudgeYes"value="<?php echo $FavoritismantagonismbyjudgeYes; ?>" /><br/> <strong>FavDescribe: </strong> <input type="text" name="FavDescribe"value="<?php echo $FavDescribe; ?>" /><br/> <strong>FavoritismantagonismbyjudgeNo: </strong> <input type="text" name="FavoritismantagonismbyjudgeNo"value="<?php echo $FavoritismantagonismbyjudgeNo; ?>" /><br/> <strong>OtherRemarks: </strong> <input type="text" name="OtherRemarks"value="<?php echo $OtherRemarks; ?>" /><br/> <strong>ACCOMODATIONS: </strong> <input type="text" name="ACCOMODATIONS"value="<?php echo $ACCOMODATIONS; ?>" /><br/> <strong>WasaninterpreterpresentYes: </strong> <input type="text" name="WasaninterpreterpresentYes"value="<?php echo $WasaninterpreterpresentYes; ?>" /><br/> <strong>InterpreterforPetitioner: </strong> <input type="text" name="InterpreterforPetitioner"value="<?php echo $InterpreterforPetitioner; ?>" /><br/> <strong>InterpreterforRespondent: </strong> <input type="text" name="InterpreterforRespondent"value="<?php echo $InterpreterforRespondent; ?>" /><br/> <strong>WasaninterpreterpresentNo: </strong> <input type="text" name="WasaninterpreterpresentNo"value="<?php echo $WasaninterpreterpresentNo; ?>" /><br/> <strong>DideitherpartyaskforaccommodationYes: </strong> <input type="text" name="DideitherpartyaskforaccommodationYes"value="<?php echo $DideitherpartyaskforaccommodationYes; ?>" /><br/> <strong>RequestedbyPetitioner: </strong> <input type="text" name="RequestedbyPetitioner"value="<?php echo $RequestedbyPetitioner; ?>" /><br/> <strong>RequestedbyRespondent: </strong> <input type="text" name="RequestedbyRespondent"value="<?php echo $RequestedbyRespondent; ?>" /><br/> <strong>Whataccommodationswererequested: </strong> <input type="text" name="Whataccommodationswererequested"value="<?php echo $Whataccommodationswererequested; ?>" /><br/> <strong>Whataccommodationswereprovided: </strong> <input type="text" name="Whataccommodationswereprovided"value="<?php echo $Whataccommodationswereprovided; ?>" /><br/> <strong>DidthejudgerevealadiagnosisYes: </strong> <input type="text" name="DidthejudgerevealadiagnosisYes"value="<?php echo $DidthejudgerevealadiagnosisYes; ?>" /><br/> <strong>DidthejudgerevealadiagnosisNo: </strong> <input type="text" name="DidthejudgerevealadiagnosisNo"value="<?php echo $DidthejudgerevealadiagnosisNo; ?>" /><br/> <strong>DideitherpartyaskforaccommodationNo: </strong> <input type="text" name="DideitherpartyaskforaccommodationNo"value="<?php echo $DideitherpartyaskforaccommodationNo; ?>" /><br/> <strong>DideitherpartyaskforaccommodationUNK: </strong> <input type="text" name="DideitherpartyaskforaccommodationUNK"value="<?php echo $DideitherpartyaskforaccommodationUNK; ?>" /><br/> <strong>DOMESTICVIOLENCECV: </strong> <input type="text" name="DOMESTICVIOLENCECV"value="<?php echo $DOMESTICVIOLENCECV; ?>" /><br/> <strong>ProtectiveorderinplaceYes: </strong> <input type="text" name="ProtectiveorderinplaceYes"value="<?php echo $ProtectiveorderinplaceYes; ?>" /><br/> <strong>Petitionerprotected: </strong> <input type="text" name="Petitionerprotected"value="<?php echo $Petitionerprotected; ?>" /><br/> <strong>Respondentprotected: </strong> <input type="text" name="Respondentprotected"value="<?php echo $Respondentprotected; ?>" /><br/> <strong>Childrenprotected: </strong> <input type="text" name="Childrenprotected"value="<?php echo $Childrenprotected; ?>" /><br/> <strong>ProtectiveorderinplaceNo: </strong> <input type="text" name="ProtectiveorderinplaceNo"value="<?php echo $ProtectiveorderinplaceNo; ?>" /><br/> <strong>ProtectiveorderinplaceUNK: </strong> <input type="text" name="ProtectiveorderinplaceUNK"value="<?php echo $ProtectiveorderinplaceUNK; ?>" /><br/> <strong>RestrainedpartywanttoterminateYes: </strong> <input type="text" name="RestrainedpartywanttoterminateYes"value="<?php echo $RestrainedpartywanttoterminateYes; ?>" /><br/> <strong>WasprotectiveorderdismissedYes: </strong> <input type="text" name="WasprotectiveorderdismissedYes"value="<?php echo $WasprotectiveorderdismissedYes; ?>" /><br/> <strong>WasprotectiveorderdismissedNo: </strong> <input type="text" name="WasprotectiveorderdismissedNo"value="<?php echo $WasprotectiveorderdismissedNo; ?>" /><br/> <strong>RestrainedpartywanttoterminateNo: </strong> <input type="text" name="RestrainedpartywanttoterminateNo"value="<?php echo $RestrainedpartywanttoterminateNo; ?>" /><br/> <strong>DidanyoneraiseDVallegationsYesDV: </strong> <input type="text" name="DidanyoneraiseDVallegationsYesDV"value="<?php echo $DidanyoneraiseDVallegationsYesDV; ?>" /><br/> <strong>DVPetitionerraisedallegations: </strong> <input type="text" name="DVPetitionerraisedallegations"value="<?php echo $DVPetitionerraisedallegations; ?>" /><br/> <strong>Respondentraisedallegations: </strong> <input type="text" name="Respondentraisedallegations"value="<?php echo $Respondentraisedallegations; ?>" /><br/> <strong>Otherraisedallegations: </strong> <input type="text" name="Otherraisedallegations"value="<?php echo $Otherraisedallegations; ?>" /><br/> <strong>Physical1: </strong> <input type="text" name="Physical1"value="<?php echo $Physical1; ?>" /><br/> <strong>Sexual1: </strong> <input type="text" name="Sexual1"value="<?php echo $Sexual1; ?>" /><br/> <strong>Verbalpsychological1: </strong> <input type="text" name="Verbalpsychological1"value="<?php echo $Verbalpsychological1; ?>" /><br/> <strong>Stalking1: </strong> <input type="text" name="Stalking1"value="<?php echo $Stalking1; ?>" /><br/> <strong>OtherHarassments: </strong> <input type="text" name="OtherHarassments"value="<?php echo $OtherHarassments; ?>" /><br/> <strong>DidallegeraskforrestrainingorderYes: </strong> <input type="text" name="DidallegeraskforrestrainingorderYes"value="<?php echo $DidallegeraskforrestrainingorderYes; ?>" /><br/> <strong>RestrainingOrderGrantedYes: </strong> <input type="text" name="RestrainingOrderGrantedYes"value="<?php echo $RestrainingOrderGrantedYes; ?>" /><br/> <strong>JudgeexplainedconditionsYes: </strong> <input type="text" name="JudgeexplainedconditionsYes"value="<?php echo $JudgeexplainedconditionsYes; ?>" /><br/> <strong>JudgeexplainedconditionsNo: </strong> <input type="text" name="JudgeexplainedconditionsNo"value="<?php echo $JudgeexplainedconditionsNo; ?>" /><br/> <strong>JudgeorderweaponsturnedinYes: </strong> <input type="text" name="JudgeorderweaponsturnedinYes"value="<?php echo $JudgeorderweaponsturnedinYes; ?>" /><br/> <strong>JudgeorderweaponsturnedinNo: </strong> <input type="text" name="JudgeorderweaponsturnedinNo"value="<?php echo $JudgeorderweaponsturnedinNo; ?>" /><br/> <strong>Othersafetyorders: </strong> <input type="text" name="Othersafetyorders"value="<?php echo $Othersafetyorders; ?>" /><br/> <strong>SafetyOrderWasRequestGrantedNo: </strong> <input type="text" name="SafetyOrderWasRequestGrantedNo"value="<?php echo $SafetyOrderWasRequestGrantedNo; ?>" /><br/> <strong>SafetyOrderReasonfordenial: </strong> <input type="text" name="SafetyOrderReasonfordenial"value="<?php echo $SafetyOrderReasonfordenial; ?>" /><br/> <strong>PartywithprotectiontohavecontactYes: </strong> <input type="text" name="PartywithprotectiontohavecontactYes"value="<?php echo $PartywithprotectiontohavecontactYes; ?>" /><br/> <strong>Mediation: </strong> <input type="text" name="Mediation"value="<?php echo $Mediation; ?>" /><br/> <strong>Coparentingclasses: </strong> <input type="text" name="Coparentingclasses"value="<?php echo $Coparentingclasses; ?>" /><br/> <strong>Childexchanges: </strong> <input type="text" name="Childexchanges"value="<?php echo $Childexchanges; ?>" /><br/> <strong>Whereexchangestotakeplace: </strong> <input type="text" name="Whereexchangestotakeplace"value="<?php echo $Whereexchangestotakeplace; ?>" /><br/> <strong>ExchangeOther: </strong> <input type="text" name="ExchangeOther"value="<?php echo $ExchangeOther; ?>" /><br/> <strong>PartywithprotectiontohavecontactNo: </strong> <input type="text" name="PartywithprotectiontohavecontactNo"value="<?php echo $PartywithprotectiontohavecontactNo; ?>" /><br/> <strong>WasprotectedpartyaccusedYes: </strong> <input type="text" name="WasprotectedpartyaccusedYes"value="<?php echo $WasprotectedpartyaccusedYes; ?>" /><br/> <strong>WasprotectedpartyaccusedNo: </strong> <input type="text" name="WasprotectedpartyaccusedNo"value="<?php echo $WasprotectedpartyaccusedNo; ?>" /><br/> <strong>WereallegationsminimizedYes: </strong> <input type="text" name="WereallegationsminimizedYes"value="<?php echo $WereallegationsminimizedYes; ?>" /><br/> <strong>Whatgesturecomment: </strong> <input type="text" name="Whatgesturecomment"value="<?php echo $Whatgesturecomment; ?>" /><br/> <strong>WereallegationsminimizedNo: </strong> <input type="text" name="WereallegationsminimizedNo"value="<?php echo $WereallegationsminimizedNo; ?>" /><br/> <strong>ProvisiontoleavesafelyYes: </strong> <input type="text" name="ProvisiontoleavesafelyYes"value="<?php echo $ProvisiontoleavesafelyYes; ?>" /><br/> <strong>ProvisiontoleavesafelyNo: </strong> <input type="text" name="ProvisiontoleavesafelyNo"value="<?php echo $ProvisiontoleavesafelyNo; ?>" /><br/> <strong>DidanyoneraiseDVallegationsNo: </strong> <input type="text" name="DidanyoneraiseDVallegationsNo"value="<?php echo $DidanyoneraiseDVallegationsNo; ?>" /><br/> <strong>CHILDABUSE: </strong> <input type="text" name="CHILDABUSE"value="<?php echo $CHILDABUSE; ?>" /><br/> <strong>DidanyoneraiseallegationsofchildabuseYes: </strong> <input type="text" name="DidanyoneraiseallegationsofchildabuseYes"value="<?php echo $DidanyoneraiseallegationsofchildabuseYes; ?>" /><br/> <strong>Petitionerraisedallegations1: </strong> <input type="text" name="Petitionerraisedallegations1"value="<?php echo $Petitionerraisedallegations1; ?>" /><br/> <strong>Respondentraisedallegations2: </strong> <input type="text" name="Respondentraisedallegations2"value="<?php echo $Respondentraisedallegations2; ?>" /><br/> <strong>Otherraisedallegations2: </strong> <input type="text" name="Otherraisedallegations2"value="<?php echo $Otherraisedallegations2; ?>" /><br/> <strong>Physical5: </strong> <input type="text" name="Physical5"value="<?php echo $Physical5; ?>" /><br/> <strong>Sexual5: </strong> <input type="text" name="Sexual5"value="<?php echo $Sexual5; ?>" /><br/> <strong>Verbalpsychological: </strong> <input type="text" name="Verbalpsychological"value="<?php echo $Verbalpsychological; ?>" /><br/> <strong>Other5: </strong> <input type="text" name="Other5"value="<?php echo $Other5; ?>" /><br/> <strong>Age04: </strong> <input type="text" name="Age04"value="<?php echo $Age04; ?>" /><br/> <strong>Age510: </strong> <input type="text" name="Age510"value="<?php echo $Age510; ?>" /><br/> <strong>Age1114: </strong> <input type="text" name="Age1114"value="<?php echo $Age1114; ?>" /><br/> <strong>Ageover14: </strong> <input type="text" name="Ageover14"value="<?php echo $Ageover14; ?>" /><br/> <strong>WasallegationalreadyreportedtoLEYes: </strong> <input type="text" name="WasallegationalreadyreportedtoLEYes"value="<?php echo $WasallegationalreadyreportedtoLEYes; ?>" /><br/> <strong>WasallegationalreadyreportedtoLENo: </strong> <input type="text" name="WasallegationalreadyreportedtoLENo"value="<?php echo $WasallegationalreadyreportedtoLENo; ?>" /><br/> <strong>WasallegationalreadyreportedtoLEUNK: </strong> <input type="text" name="WasallegationalreadyreportedtoLEUNK"value="<?php echo $WasallegationalreadyreportedtoLEUNK; ?>" /><br/> <strong>WasinvestigativereportorderedYes: </strong> <input type="text" name="WasinvestigativereportorderedYes"value="<?php echo $WasinvestigativereportorderedYes; ?>" /><br/> <strong>MDITlawenforcement: </strong> <input type="text" name="MDITlawenforcement"value="<?php echo $MDITlawenforcement; ?>" /><br/> <strong>ChildProtectiveServices: </strong> <input type="text" name="ChildProtectiveServices"value="<?php echo $ChildProtectiveServices; ?>" /><br/> <strong>ProbationDept: </strong> <input type="text" name="ProbationDept"value="<?php echo $ProbationDept; ?>" /><br/> <strong>FCevaluatorName: </strong> <input type="text" name="FCevaluatorName"value="<?php echo $FCevaluatorName; ?>" /><br/> <strong>FCmediatorName: </strong> <input type="text" name="FCmediatorName"value="<?php echo $FCmediatorName; ?>" /><br/> <strong>FcOther: </strong> <input type="text" name="FcOther"value="<?php echo $FcOther; ?>" /><br/> <strong>IfsexabuseallegedFC3118orderedYes: </strong> <input type="text" name="IfsexabuseallegedFC3118orderedYes"value="<?php echo $IfsexabuseallegedFC3118orderedYes; ?>" /><br/> <strong>Nameofevalinvestigator: </strong> <input type="text" name="Nameofevalinvestigator"value="<?php echo $Nameofevalinvestigator; ?>" /><br/> <strong>IfsexabuseallegedFC3118orderedNo: </strong> <input type="text" name="IfsexabuseallegedFC3118orderedNo"value="<?php echo $IfsexabuseallegedFC3118orderedNo; ?>" /><br/> <strong>WasinvestigativereportorderedNo: </strong> <input type="text" name="WasinvestigativereportorderedNo"value="<?php echo $WasinvestigativereportorderedNo; ?>" /><br/> <strong>WaschildorderedtocontactwithabuserYes: </strong> <input type="text" name="WaschildorderedtocontactwithabuserYes"value="<?php echo $WaschildorderedtocontactwithabuserYes; ?>" /><br/> <strong>Unsupervisedcontact: </strong> <input type="text" name="Unsupervisedcontact"value="<?php echo $Unsupervisedcontact; ?>" /><br/> <strong>Contactsupervisedbyprofessional: </strong> <input type="text" name="Contactsupervisedbyprofessional"value="<?php echo $Contactsupervisedbyprofessional; ?>" /><br/> <strong>Contactsupervisedbynonproneutral: </strong> <input type="text" name="Contactsupervisedbynonproneutral"value="<?php echo $Contactsupervisedbynonproneutral; ?>" /><br/> <strong>Contactsupervisedbyfamilyfriend: </strong> <input type="text" name="Contactsupervisedbyfamilyfriend"value="<?php echo $Contactsupervisedbyfamilyfriend; ?>" /><br/> <strong>Parentchildtherapy: </strong> <input type="text" name="Parentchildtherapy"value="<?php echo $Parentchildtherapy; ?>" /><br/> <strong>ParentChildOther: </strong> <input type="text" name="ParentChildOther"value="<?php echo $ParentChildOther; ?>" /><br/> <strong>WaschildorderedtocontactwithabuserNo: </strong> <input type="text" name="WaschildorderedtocontactwithabuserNo"value="<?php echo $WaschildorderedtocontactwithabuserNo; ?>" /><br/> <strong>DidallegeraskforprotectionforchildYes: </strong> <input type="text" name="DidallegeraskforprotectionforchildYes"value="<?php echo $DidallegeraskforprotectionforchildYes; ?>" /><br/> <strong>WasrequestgrantedYes: </strong> <input type="text" name="WasrequestgrantedYes"value="<?php echo $WasrequestgrantedYes; ?>" /><br/> <strong>WasrequestgrantedNo: </strong> <input type="text" name="WasrequestgrantedNo"value="<?php echo $WasrequestgrantedNo; ?>" /><br/> <strong>PotectionReasonfordenial: </strong> <input type="text" name="PotectionReasonfordenial"value="<?php echo $PotectionReasonfordenial; ?>" /><br/> <strong>WasallegeraccusedYes: </strong> <input type="text" name="WasallegeraccusedYes"value="<?php echo $WasallegeraccusedYes; ?>" /><br/> <strong>Whoaccusedalleger: </strong> <input type="text" name="Whoaccusedalleger"value="<?php echo $Whoaccusedalleger; ?>" /><br/> <strong>WasallegeraccusedNo: </strong> <input type="text" name="WasallegeraccusedNo"value="<?php echo $WasallegeraccusedNo; ?>" /><br/> <strong>DidjudgeminimizeYes: </strong> <input type="text" name="DidjudgeminimizeYes"value="<?php echo $DidjudgeminimizeYes; ?>" /><br/> <strong>Describegesturescomments: </strong> <input type="text" name="Describegesturescomments"value="<?php echo $Describegesturescomments; ?>" /><br/> <strong>DidjudgeminimizeNo: </strong> <input type="text" name="DidjudgeminimizeNo"value="<?php echo $DidjudgeminimizeNo; ?>" /><br/> <strong>DidanyoneraiseallegationsofchildabuseNo: </strong> <input type="text" name="DidanyoneraiseallegationsofchildabuseNo"value="<?php echo $DidanyoneraiseallegationsofchildabuseNo; ?>" /><br/> <strong>CHILDSINPUT: </strong> <input type="text" name="CHILDSINPUT"value="<?php echo $CHILDSINPUT; ?>" /><br/> <strong>RequestchildappearYes: </strong> <input type="text" name="RequestchildappearYes"value="<?php echo $RequestchildappearYes; ?>" /><br/> <strong>Petitionerrequest: </strong> <input type="text" name="Petitionerrequest"value="<?php echo $Petitionerrequest; ?>" /><br/> <strong>Respondentrequest: </strong> <input type="text" name="Respondentrequest"value="<?php echo $Respondentrequest; ?>" /><br/> <strong>Childsattorney2: </strong> <input type="text" name="Childsattorney2"value="<?php echo $Childsattorney2; ?>" /><br/> <strong>AttorneyOther: </strong> <input type="text" name="AttorneyOther"value="<?php echo $AttorneyOther; ?>" /><br/> <strong>Judgeagreed1: </strong> <input type="text" name="Judgeagreed1"value="<?php echo $Judgeagreed1; ?>" /><br/> <strong>Judgedenied2: </strong> <input type="text" name="Judgedenied2"value="<?php echo $Judgedenied2; ?>" /><br/> <strong>Reasonfordenial2: </strong> <input type="text" name="Reasonfordenial2"value="<?php echo $Reasonfordenial2; ?>" /><br/> <strong>Judgereservedforfuturehearing: </strong> <input type="text" name="Judgereservedforfuturehearing"value="<?php echo $Judgereservedforfuturehearing; ?>" /><br/> <strong>Dateofhearing1: </strong> <input type="text" name="Dateofhearing1"value="<?php echo $Dateofhearing1; ?>" /><br/> <strong>AttorneyforchildYes: </strong> <input type="text" name="AttorneyforchildYes"value="<?php echo $AttorneyforchildYes; ?>" /><br/> <strong>Childsattorney: </strong> <input type="text" name="Childsattorney"value="<?php echo $Childsattorney; ?>" /><br/> <strong>GuardianAdLitem: </strong> <input type="text" name="GuardianAdLitem"value="<?php echo $GuardianAdLitem; ?>" /><br/> <strong>BestInterestAttorney: </strong> <input type="text" name="BestInterestAttorney"value="<?php echo $BestInterestAttorney; ?>" /><br/> <strong>Wherephysicallyincourtroom: </strong> <input type="text" name="Wherephysicallyincourtroom"value="<?php echo $Wherephysicallyincourtroom; ?>" /><br/> <strong>AppeartobealignedprejudicedYes: </strong> <input type="text" name="AppeartobealignedprejudicedYes"value="<?php echo $AppeartobealignedprejudicedYes; ?>" /><br/> <strong>Howshowfavoritism: </strong> <input type="text" name="Howshowfavoritism"value="<?php echo $Howshowfavoritism; ?>" /><br/> <strong>AppeartobealignedprejudicedNo: </strong> <input type="text" name="AppeartobealignedprejudicedNo"value="<?php echo $AppeartobealignedprejudicedNo; ?>" /><br/> <strong>DidchildsattorneygivereportinputYes: </strong> <input type="text" name="DidchildsattorneygivereportinputYes"value="<?php echo $DidchildsattorneygivereportinputYes; ?>" /><br/> <strong>WaschildpresenttotestifyYes: </strong> <input type="text" name="WaschildpresenttotestifyYes"value="<?php echo $WaschildpresenttotestifyYes; ?>" /><br/> <strong>Under10testified: </strong> <input type="text" name="Under10testified"value="<?php echo $Under10testified; ?>" /><br/> <strong>Age1014testified: </strong> <input type="text" name="Age1014testified"value="<?php echo $Age1014testified; ?>" /><br/> <strong>Over14testified: </strong> <input type="text" name="Over14testified"value="<?php echo $Over14testified; ?>" /><br/> <strong>Examinedonwitnessstand: </strong> <input type="text" name="Examinedonwitnessstand"value="<?php echo $Examinedonwitnessstand; ?>" /><br/> <strong>ObjectiontoopencourtquestionYes: </strong> <input type="text" name="ObjectiontoopencourtquestionYes"value="<?php echo $ObjectiontoopencourtquestionYes; ?>" /><br/> <strong>Whoobjected: </strong> <input type="text" name="Whoobjected"value="<?php echo $Whoobjected; ?>" /><br/> <strong>ObjectiontoopencourtquestionNo: </strong> <input type="text" name="ObjectiontoopencourtquestionNo"value="<?php echo $ObjectiontoopencourtquestionNo; ?>" /><br/> <strong>WaschildplacedunderoathYes: </strong> <input type="text" name="WaschildplacedunderoathYes"value="<?php echo $WaschildplacedunderoathYes; ?>" /><br/> <strong>WaschildplacedunderoathNo: </strong> <input type="text" name="WaschildplacedunderoathNo"value="<?php echo $WaschildplacedunderoathNo; ?>" /><br/> <strong>Judgequestionedchild1: </strong> <input type="text" name="Judgequestionedchild1"value="<?php echo $Judgequestionedchild1; ?>" /><br/> <strong>Childsattorneyquestionedchild1: </strong> <input type="text" name="Childsattorneyquestionedchild1"value="<?php echo $Childsattorneyquestionedchild1; ?>" /><br/> <strong>Petitionersattorneyquestionedchild1: </strong> <input type="text" name="Petitionersattorneyquestionedchild1"value="<?php echo $Petitionersattorneyquestionedchild1; ?>" /><br/> <strong>Petitionerquestionedchild1: </strong> <input type="text" name="Petitionerquestionedchild1"value="<?php echo $Petitionerquestionedchild1; ?>" /><br/> <strong>Respondentsattorneyquestionedchild1: </strong> <input type="text" name="Respondentsattorneyquestionedchild1"value="<?php echo $Respondentsattorneyquestionedchild1; ?>" /><br/> <strong>Respondentquestionedchild1: </strong> <input type="text" name="Respondentquestionedchild1"value="<?php echo $Respondentquestionedchild1; ?>" /><br/> <strong>PartydeniedabilitytoquestionYes: </strong> <input type="text" name="PartydeniedabilitytoquestionYes"value="<?php echo $PartydeniedabilitytoquestionYes; ?>" /><br/> <strong>Petitionerdenied: </strong> <input type="text" name="Petitionerdenied"value="<?php echo $Petitionerdenied; ?>" /><br/> <strong>Respondentdenied: </strong> <input type="text" name="Respondentdenied"value="<?php echo $Respondentdenied; ?>" /><br/> <strong>PartydeniedabilitytoquestionNo: </strong> <input type="text" name="PartydeniedabilitytoquestionNo"value="<?php echo $PartydeniedabilitytoquestionNo; ?>" /><br/> <strong>Howdidchildreacttoexamination: </strong> <input type="text" name="Howdidchildreacttoexamination"value="<?php echo $Howdidchildreacttoexamination; ?>" /><br/> <strong>Questionedinchambers: </strong> <input type="text" name="Questionedinchambers"value="<?php echo $Questionedinchambers; ?>" /><br/> <strong>DidapartyobjectYes: </strong> <input type="text" name="DidapartyobjectYes"value="<?php echo $DidapartyobjectYes; ?>" /><br/> <strong>DidapartyobjectNo: </strong> <input type="text" name="DidapartyobjectNo"value="<?php echo $DidapartyobjectNo; ?>" /><br/> <strong>Petitionerwenttochambers: </strong> <input type="text" name="Petitionerwenttochambers"value="<?php echo $Petitionerwenttochambers; ?>" /><br/> <strong>Petitionersattorneywenttochambers: </strong> <input type="text" name="Petitionersattorneywenttochambers"value="<?php echo $Petitionersattorneywenttochambers; ?>" /><br/> <strong>Respondentwenttochambers: </strong> <input type="text" name="Respondentwenttochambers"value="<?php echo $Respondentwenttochambers; ?>" /><br/> <strong>Respondentsattorneywenttochambers: </strong> <input type="text" name="Respondentsattorneywenttochambers"value="<?php echo $Respondentsattorneywenttochambers; ?>" /><br/> <strong>Childsattorneywenttochambers: </strong> <input type="text" name="Childsattorneywenttochambers"value="<?php echo $Childsattorneywenttochambers; ?>" /><br/> <strong>Courtreporterwenttochambers: </strong> <input type="text" name="Courtreporterwenttochambers"value="<?php echo $Courtreporterwenttochambers; ?>" /><br/> <strong>CourtpreventaccesstorecordYes: </strong> <input type="text" name="CourtpreventaccesstorecordYes"value="<?php echo $CourtpreventaccesstorecordYes; ?>" /><br/> <strong>CourtpreventaccesstorecordNo: </strong> <input type="text" name="CourtpreventaccesstorecordNo"value="<?php echo $CourtpreventaccesstorecordNo; ?>" /><br/> <strong>Questionedbyremoteaccess: </strong> <input type="text" name="Questionedbyremoteaccess"value="<?php echo $Questionedbyremoteaccess; ?>" /><br/> <strong>Atcourthousevideoseparatelocation: </strong> <input type="text" name="Atcourthousevideoseparatelocation"value="<?php echo $Atcourthousevideoseparatelocation; ?>" /><br/> <strong>AwayfromcourthousebySkype: </strong> <input type="text" name="AwayfromcourthousebySkype"value="<?php echo $AwayfromcourthousebySkype; ?>" /><br/> <strong>SkypeOther: </strong> <input type="text" name="SkypeOther"value="<?php echo $SkypeOther; ?>" /><br/> <strong>ChildunderoathYes: </strong> <input type="text" name="ChildunderoathYes"value="<?php echo $ChildunderoathYes; ?>" /><br/> <strong>ChildunderoathNo: </strong> <input type="text" name="ChildunderoathNo"value="<?php echo $ChildunderoathNo; ?>" /><br/> <strong>Judgequestionedchild: </strong> <input type="text" name="Judgequestionedchild"value="<?php echo $Judgequestionedchild; ?>" /><br/> <strong>Childsattorneyquestionedchild: </strong> <input type="text" name="Childsattorneyquestionedchild"value="<?php echo $Childsattorneyquestionedchild; ?>" /><br/> <strong>Petitionerquestionedchild: </strong> <input type="text" name="Petitionerquestionedchild"value="<?php echo $Petitionerquestionedchild; ?>" /><br/> <strong>Petitionersattorneyquestionedchild: </strong> <input type="text" name="Petitionersattorneyquestionedchild"value="<?php echo $Petitionersattorneyquestionedchild; ?>" /><br/> <strong>Respondentquestionedchild: </strong> <input type="text" name="Respondentquestionedchild"value="<?php echo $Respondentquestionedchild; ?>" /><br/> <strong>Respondentsattorneyquestionedchild: </strong> <input type="text" name="Respondentsattorneyquestionedchild"value="<?php echo $Respondentsattorneyquestionedchild; ?>" /><br/> <strong>Otherquestionedchild: </strong> <input type="text" name="Otherquestionedchild"value="<?php echo $Otherquestionedchild; ?>" /><br/> <strong>WasapartydeniedquestionchildYes: </strong> <input type="text" name="WasapartydeniedquestionchildYes"value="<?php echo $WasapartydeniedquestionchildYes; ?>" /><br/> <strong>Petitionerpreventedquestions: </strong> <input type="text" name="Petitionerpreventedquestions"value="<?php echo $Petitionerpreventedquestions; ?>" /><br/> <strong>Respondentpreventedquestions: </strong> <input type="text" name="Respondentpreventedquestions"value="<?php echo $Respondentpreventedquestions; ?>" /><br/> <strong>WasapartydeniedquestionchildNo: </strong> <input type="text" name="WasapartydeniedquestionchildNo"value="<?php echo $WasapartydeniedquestionchildNo; ?>" /><br/> <strong>WaschildpresenttotestifyNo: </strong> <input type="text" name="WaschildpresenttotestifyNo"value="<?php echo $WaschildpresenttotestifyNo; ?>" /><br/> <strong>RequestchildappearNo: </strong> <input type="text" name="RequestchildappearNo"value="<?php echo $RequestchildappearNo; ?>" /><br/> <p>* Required</p> <input type="submit" name="submit" value="Submit"> </div> </form> </body> </html> <?php } // connect to the database include('dbconnect.php'); // check if the form has been submitted. If it has, process the form and save it to the database if (isset($_POST['submit'])) { // confirm that the 'id' value is a valid integer before getting the form data if (is_numeric($_POST['id'])) { // get form data, making sure it is valid $id = $_POST['id']; $Volunteer= mysql_real_escape_string(htmlspecialchars($_POST['Volunteer'])); $CaseShortTitle= mysql_real_escape_string(htmlspecialchars($_POST['CaseShortTitle'])); $CaseNumber= mysql_real_escape_string(htmlspecialchars($_POST['CaseNumber'])); $HearingDate= mysql_real_escape_string(htmlspecialchars($_POST['HearingDate'])); $HearingTime= mysql_real_escape_string(htmlspecialchars($_POST['HearingTime'])); $Department= mysql_real_escape_string(htmlspecialchars($_POST['Department'])); $JudgeCommissioner= mysql_real_escape_string(htmlspecialchars($_POST['JudgeCommissioner'])); $JMale= mysql_real_escape_string(htmlspecialchars($_POST['JMale'])); $JFemale= mysql_real_escape_string(htmlspecialchars($_POST['JFemale'])); $PetitionersName= mysql_real_escape_string(htmlspecialchars($_POST['PetitionersName'])); $PMale= mysql_real_escape_string(htmlspecialchars($_POST['PMale'])); $PFemale= mysql_real_escape_string(htmlspecialchars($_POST['PFemale'])); $RespondentsName= mysql_real_escape_string(htmlspecialchars($_POST['RespondentsName'])); $Male= mysql_real_escape_string(htmlspecialchars($_POST['Male'])); $Female= mysql_real_escape_string(htmlspecialchars($_POST['Female'])); $ExParteHearing= mysql_real_escape_string(htmlspecialchars($_POST['ExParteHearing'])); $LawandMotionHearing= mysql_real_escape_string(htmlspecialchars($_POST['LawandMotionHearing'])); $Hearing= mysql_real_escape_string(htmlspecialchars($_POST['Hearing'])); $Trial= mysql_real_escape_string(htmlspecialchars($_POST['Trial'])); $SettlementConference= mysql_real_escape_string(htmlspecialchars($_POST['SettlementConference'])); $COURTROOMAPPEARANCES= mysql_real_escape_string(htmlspecialchars($_POST['COURTROOMAPPEARANCES'])); $PetitionerRepresented= mysql_real_escape_string(htmlspecialchars($_POST['PetitionerRepresented'])); $PetitionerProSe= mysql_real_escape_string(htmlspecialchars($_POST['PetitionerProSe'])); $RespondentRepresented= mysql_real_escape_string(htmlspecialchars($_POST['RespondentRepresented'])); $RespondentProSee= mysql_real_escape_string(htmlspecialchars($_POST['RespondentProSee'])); $AttorneyforChildrenName= mysql_real_escape_string(htmlspecialchars($_POST['AttorneyforChildrenName'])); $AMale= mysql_real_escape_string(htmlspecialchars($_POST['AMale'])); $AFemale= mysql_real_escape_string(htmlspecialchars($_POST['AFemale'])); $Other2= mysql_real_escape_string(htmlspecialchars($_POST['Other2'])); $NonAppearanceReason= mysql_real_escape_string(htmlspecialchars($_POST['NonAppearanceReason'])); $AppearedbyphoneYes= mysql_real_escape_string(htmlspecialchars($_POST['AppearedbyphoneYes'])); $AppearedbyPhoneNo= mysql_real_escape_string(htmlspecialchars($_POST['AppearedbyPhoneNo'])); $AppearedBySkypeYes= mysql_real_escape_string(htmlspecialchars($_POST['AppearedBySkypeYes'])); $AppearedbySkypeNo= mysql_real_escape_string(htmlspecialchars($_POST['AppearedbySkypeNo'])); $MinuteOrderProvidedatEndYes= mysql_real_escape_string(htmlspecialchars($_POST['MinuteOrderProvidedatEndYes'])); $MinuteOrderprovidedatendNo= mysql_real_escape_string(htmlspecialchars($_POST['MinuteOrderprovidedatendNo'])); $ISSUELITIGATION= mysql_real_escape_string(htmlspecialchars($_POST['ISSUELITIGATION'])); $Divorce= mysql_real_escape_string(htmlspecialchars($_POST['Divorce'])); $ChildCustody= mysql_real_escape_string(htmlspecialchars($_POST['ChildCustody'])); $ChildSupport= mysql_real_escape_string(htmlspecialchars($_POST['ChildSupport'])); $ChildVisitation= mysql_real_escape_string(htmlspecialchars($_POST['ChildVisitation'])); $RestrainingOrder= mysql_real_escape_string(htmlspecialchars($_POST['RestrainingOrder'])); $SpousalSupport= mysql_real_escape_string(htmlspecialchars($_POST['SpousalSupport'])); $Contempt= mysql_real_escape_string(htmlspecialchars($_POST['Contempt'])); $AttorneyFees= mysql_real_escape_string(htmlspecialchars($_POST['AttorneyFees'])); $OtherNotes1= mysql_real_escape_string(htmlspecialchars($_POST['OtherNotes1'])); $CaseContinuedToFutureDateYes= mysql_real_escape_string(htmlspecialchars($_POST['CaseContinuedToFutureDateYes'])); $DateContHearing= mysql_real_escape_string(htmlspecialchars($_POST['DateContHearing'])); $CaseContinuedToFutureDateNo= mysql_real_escape_string(htmlspecialchars($_POST['CaseContinuedToFutureDateNo'])); $stipulationsYes= mysql_real_escape_string(htmlspecialchars($_POST['stipulationsYes'])); $JudgeAskIfPartiesUnderstood= mysql_real_escape_string(htmlspecialchars($_POST['JudgeAskIfPartiesUnderstood'])); $JudgeAskIfPartiesUnderstoodNo= mysql_real_escape_string(htmlspecialchars($_POST['JudgeAskIfPartiesUnderstoodNo'])); $stipulationsNo= mysql_real_escape_string(htmlspecialchars($_POST['stipulationsNo'])); $CHILDCUSTODYVISITSUPPORTORDERS= mysql_real_escape_string(htmlspecialchars($_POST['CHILDCUSTODYVISITSUPPORTORDERS'])); $CustodyVisitOrdersInPlacePriorToHearing= mysql_real_escape_string(htmlspecialchars($_POST['CustodyVisitOrdersInPlacePriorToHearing'])); $JointPhysicalCustody= mysql_real_escape_string(htmlspecialchars($_POST['JointPhysicalCustody'])); $JointLegalCustody= mysql_real_escape_string(htmlspecialchars($_POST['JointLegalCustody'])); $LegalCustodyPetitioner= mysql_real_escape_string(htmlspecialchars($_POST['LegalCustodyPetitioner'])); $LegalCustodyRespondent= mysql_real_escape_string(htmlspecialchars($_POST['LegalCustodyRespondent'])); $PhysicalcustodyPetitioner= mysql_real_escape_string(htmlspecialchars($_POST['PhysicalcustodyPetitioner'])); $PhysicalCustodyRespondent= mysql_real_escape_string(htmlspecialchars($_POST['PhysicalCustodyRespondent'])); $UnsupervisedvisitationtoPetitioner= mysql_real_escape_string(htmlspecialchars($_POST['UnsupervisedvisitationtoPetitioner'])); $UnsupervisedvisitationtoRepondent= mysql_real_escape_string(htmlspecialchars($_POST['UnsupervisedvisitationtoRepondent'])); $SupervisedvisitationtoPetitioner= mysql_real_escape_string(htmlspecialchars($_POST['SupervisedvisitationtoPetitioner'])); $SupervisedvisitationtoRepondent= mysql_real_escape_string(htmlspecialchars($_POST['SupervisedvisitationtoRepondent'])); $RequesttochangecustodyYes= mysql_real_escape_string(htmlspecialchars($_POST['RequesttochangecustodyYes'])); $MadebyPetitioner= mysql_real_escape_string(htmlspecialchars($_POST['MadebyPetitioner'])); $MadebyRespondent= mysql_real_escape_string(htmlspecialchars($_POST['MadebyRespondent'])); $RequesttochangecustodyNo= mysql_real_escape_string(htmlspecialchars($_POST['RequesttochangecustodyNo'])); $RequesttochangevisitationYes= mysql_real_escape_string(htmlspecialchars($_POST['RequesttochangevisitationYes'])); $ChangeVisitationMadebyPetitioner= mysql_real_escape_string(htmlspecialchars($_POST['ChangeVisitationMadebyPetitioner'])); $ChangeVisitationMadebyRespondent= mysql_real_escape_string(htmlspecialchars($_POST['ChangeVisitationMadebyRespondent'])); $RequesttochangevisitationNo= mysql_real_escape_string(htmlspecialchars($_POST['RequesttochangevisitationNo'])); $Reasonforrequesttochangecustodyvisitation= mysql_real_escape_string(htmlspecialchars($_POST['Reasonforrequesttochangecustodyvisitation'])); $Domesticviolence= mysql_real_escape_string(htmlspecialchars($_POST['Domesticviolence'])); $Childabuseneglect= mysql_real_escape_string(htmlspecialchars($_POST['Childabuseneglect'])); $Relocation= mysql_real_escape_string(htmlspecialchars($_POST['Relocation'])); $Educationalissues= mysql_real_escape_string(htmlspecialchars($_POST['Educationalissues'])); $Childbehavioralissues= mysql_real_escape_string(htmlspecialchars($_POST['Childbehavioralissues'])); $Childswishes= mysql_real_escape_string(htmlspecialchars($_POST['Childswishes'])); $Developmentalstageofchild= mysql_real_escape_string(htmlspecialchars($_POST['Developmentalstageofchild'])); $DevelopmentOther= mysql_real_escape_string(htmlspecialchars($_POST['DevelopmentOther'])); $ChangesmadetocustodyorderYes= mysql_real_escape_string(htmlspecialchars($_POST['ChangesmadetocustodyorderYes'])); $SolelegaltoPetitioner= mysql_real_escape_string(htmlspecialchars($_POST['SolelegaltoPetitioner'])); $SolelegaltoRespondent= mysql_real_escape_string(htmlspecialchars($_POST['SolelegaltoRespondent'])); $JointlegaltoPetitioner= mysql_real_escape_string(htmlspecialchars($_POST['JointlegaltoPetitioner'])); $JointlegaltoRespondent= mysql_real_escape_string(htmlspecialchars($_POST['JointlegaltoRespondent'])); $SolephysicaltoPetitioner= mysql_real_escape_string(htmlspecialchars($_POST['SolephysicaltoPetitioner'])); $SolephysicaltoRespondent= mysql_real_escape_string(htmlspecialchars($_POST['SolephysicaltoRespondent'])); $JointphysicalprimarytoPetitioner= mysql_real_escape_string(htmlspecialchars($_POST['JointphysicalprimarytoPetitioner'])); $JointphysicalprimarytoRespondent= mysql_real_escape_string(htmlspecialchars($_POST['JointphysicalprimarytoRespondent'])); $ChangesmadetovisitationorderYes= mysql_real_escape_string(htmlspecialchars($_POST['ChangesmadetovisitationorderYes'])); $IncreasedforPetitioner= mysql_real_escape_string(htmlspecialchars($_POST['IncreasedforPetitioner'])); $IncreasedforRespondent= mysql_real_escape_string(htmlspecialchars($_POST['IncreasedforRespondent'])); $TerminatedforPetitioner= mysql_real_escape_string(htmlspecialchars($_POST['TerminatedforPetitioner'])); $TerminatedforRespondent= mysql_real_escape_string(htmlspecialchars($_POST['TerminatedforRespondent'])); $SupervisedforPetitioner= mysql_real_escape_string(htmlspecialchars($_POST['SupervisedforPetitioner'])); $SupervisedforRespondent= mysql_real_escape_string(htmlspecialchars($_POST['SupervisedforRespondent'])); $ChangestocustodyorvisitationNo= mysql_real_escape_string(htmlspecialchars($_POST['ChangestocustodyorvisitationNo'])); $PriororOrCurrentallegationsofDVCAYes= mysql_real_escape_string(htmlspecialchars($_POST['PriororOrCurrentallegationsofDVCAYes'])); $PriororOrCurrentallegationsofDVCAYesNo= mysql_real_escape_string(htmlspecialchars($_POST['PriororOrCurrentallegationsofDVCAYesNo'])); $PriororOrCurrentallegationsofDVCAYesUNK= mysql_real_escape_string(htmlspecialchars($_POST['PriororOrCurrentallegationsofDVCAYesUNK'])); $PartyrequestingincreasebehindsupportYes= mysql_real_escape_string(htmlspecialchars($_POST['PartyrequestingincreasebehindsupportYes'])); $PartyrequestingincreasebehindsupportNo= mysql_real_escape_string(htmlspecialchars($_POST['PartyrequestingincreasebehindsupportNo'])); $PartyrequestingincreasebehindsupportUNK= mysql_real_escape_string(htmlspecialchars($_POST['PartyrequestingincreasebehindsupportUNK'])); $WasapartyrequestingchangeinsupportYes= mysql_real_escape_string(htmlspecialchars($_POST['WasapartyrequestingchangeinsupportYes'])); $Primarycustodialparent= mysql_real_escape_string(htmlspecialchars($_POST['Primarycustodialparent'])); $Otherparent= mysql_real_escape_string(htmlspecialchars($_POST['Otherparent'])); $Supportincreased= mysql_real_escape_string(htmlspecialchars($_POST['Supportincreased'])); $Supportdecreased= mysql_real_escape_string(htmlspecialchars($_POST['Supportdecreased'])); $Nochangeinsupport= mysql_real_escape_string(htmlspecialchars($_POST['Nochangeinsupport'])); $WasapartyrequestingchangeinsupportNo= mysql_real_escape_string(htmlspecialchars($_POST['WasapartyrequestingchangeinsupportNo'])); $WasapartyrequestingchangeinsupportUNK= mysql_real_escape_string(htmlspecialchars($_POST['WasapartyrequestingchangeinsupportUNK'])); $DUEPROCESSCONSTITUTIONALRIGHTS= mysql_real_escape_string(htmlspecialchars($_POST['DUEPROCESSCONSTITUTIONALRIGHTS'])); $DidacourtreportermakearecordYes= mysql_real_escape_string(htmlspecialchars($_POST['DidacourtreportermakearecordYes'])); $DidacourtreportermakearecordNo= mysql_real_escape_string(htmlspecialchars($_POST['DidacourtreportermakearecordNo'])); $DidapartyminorattnyrequestobjectYes= mysql_real_escape_string(htmlspecialchars($_POST['DidapartyminorattnyrequestobjectYes'])); $DidhearingproceedanywayYes= mysql_real_escape_string(htmlspecialchars($_POST['DidhearingproceedanywayYes'])); $DidhearingproceedanywayNo= mysql_real_escape_string(htmlspecialchars($_POST['DidhearingproceedanywayNo'])); $DidapartyminorattnyrequestobjectNo= mysql_real_escape_string(htmlspecialchars($_POST['DidapartyminorattnyrequestobjectNo'])); $DidapartyasktoaudiovideotapeYes= mysql_real_escape_string(htmlspecialchars($_POST['DidapartyasktoaudiovideotapeYes'])); $VideoTapegrantedYes= mysql_real_escape_string(htmlspecialchars($_POST['VideoTapegrantedYes'])); $VideoTapegrantedNo= mysql_real_escape_string(htmlspecialchars($_POST['VideoTapegrantedNo'])); $DidapartyasktoaudiovideotapeNo= mysql_real_escape_string(htmlspecialchars($_POST['DidapartyasktoaudiovideotapeNo'])); $DidmeetingoccurinchambersYes= mysql_real_escape_string(htmlspecialchars($_POST['DidmeetingoccurinchambersYes'])); $Whowentintochambers= mysql_real_escape_string(htmlspecialchars($_POST['Whowentintochambers'])); $Petitionersattorney= mysql_real_escape_string(htmlspecialchars($_POST['Petitionersattorney'])); $Respondentsattorney= mysql_real_escape_string(htmlspecialchars($_POST['Respondentsattorney'])); $Childsattorney1= mysql_real_escape_string(htmlspecialchars($_POST['Childsattorney1'])); $Petitioner1= mysql_real_escape_string(htmlspecialchars($_POST['Petitioner1'])); $Respondent1= mysql_real_escape_string(htmlspecialchars($_POST['Respondent1'])); $Courtreporter= mysql_real_escape_string(htmlspecialchars($_POST['Courtreporter'])); $Ifpetitionerrespondentexcludedwhy= mysql_real_escape_string(htmlspecialchars($_POST['Ifpetitionerrespondentexcludedwhy'])); $didjudgesealrecordYes= mysql_real_escape_string(htmlspecialchars($_POST['didjudgesealrecordYes'])); $didjudgesealrecordNo= mysql_real_escape_string(htmlspecialchars($_POST['didjudgesealrecordNo'])); $CourtappointeereportinfopresentedYes= mysql_real_escape_string(htmlspecialchars($_POST['CourtappointeereportinfopresentedYes'])); $AuthorMediator= mysql_real_escape_string(htmlspecialchars($_POST['AuthorMediator'])); $AuthorEvaluatorinvestigator= mysql_real_escape_string(htmlspecialchars($_POST['AuthorEvaluatorinvestigator'])); $AuthorCourtappointedtherapist= mysql_real_escape_string(htmlspecialchars($_POST['AuthorCourtappointedtherapist'])); $AuthorCoparentingcoordinator= mysql_real_escape_string(htmlspecialchars($_POST['AuthorCoparentingcoordinator'])); $DidapartyobjecttoreportinfoYes= mysql_real_escape_string(htmlspecialchars($_POST['DidapartyobjecttoreportinfoYes'])); $Didnotreceivereport10daysprior= mysql_real_escape_string(htmlspecialchars($_POST['Didnotreceivereport10daysprior'])); $Reportinfohearsay= mysql_real_escape_string(htmlspecialchars($_POST['Reportinfohearsay'])); $Reportinfonotauthenticated= mysql_real_escape_string(htmlspecialchars($_POST['Reportinfonotauthenticated'])); $JudgeruledonobjectionSustained= mysql_real_escape_string(htmlspecialchars($_POST['JudgeruledonobjectionSustained'])); $JudgeruledonobjectionOverruled= mysql_real_escape_string(htmlspecialchars($_POST['JudgeruledonobjectionOverruled'])); $WasobjectingpartyabletoexamineYes= mysql_real_escape_string(htmlspecialchars($_POST['WasobjectingpartyabletoexamineYes'])); $WasobjectingpartyabletoexamineNo= mysql_real_escape_string(htmlspecialchars($_POST['WasobjectingpartyabletoexamineNo'])); $WasahearingdatesetYes= mysql_real_escape_string(htmlspecialchars($_POST['WasahearingdatesetYes'])); $WasahearingdatesetNo= mysql_real_escape_string(htmlspecialchars($_POST['WasahearingdatesetNo'])); $DidapartyobjecttoreportinfoNo= mysql_real_escape_string(htmlspecialchars($_POST['DidapartyobjecttoreportinfoNo'])); $CourtappointeereportinfopresentedNo= mysql_real_escape_string(htmlspecialchars($_POST['CourtappointeereportinfopresentedNo'])); $DidAnyOneElseRepresentYes= mysql_real_escape_string(htmlspecialchars($_POST['DidAnyOneElseRepresentYes'])); $Whopresentedtheinfo= mysql_real_escape_string(htmlspecialchars($_POST['Whopresentedtheinfo'])); $WasahearsayobjectionmadeYes= mysql_real_escape_string(htmlspecialchars($_POST['WasahearsayobjectionmadeYes'])); $Bywhom= mysql_real_escape_string(htmlspecialchars($_POST['Bywhom'])); $DidcourthearconsideranywayYes= mysql_real_escape_string(htmlspecialchars($_POST['DidcourthearconsideranywayYes'])); $DidcourthearconsideranywayNo= mysql_real_escape_string(htmlspecialchars($_POST['DidcourthearconsideranywayNo'])); $WasahearsayobjectionmadeNo= mysql_real_escape_string(htmlspecialchars($_POST['WasahearsayobjectionmadeNo'])); $DidAnyOneElseRepresentNo= mysql_real_escape_string(htmlspecialchars($_POST['DidAnyOneElseRepresentNo'])); $PartydeniedrighttoevidencewitnessYes= mysql_real_escape_string(htmlspecialchars($_POST['PartydeniedrighttoevidencewitnessYes'])); $Petitioner11= mysql_real_escape_string(htmlspecialchars($_POST['Petitioner11'])); $Respondent11= mysql_real_escape_string(htmlspecialchars($_POST['Respondent11'])); $Reasonfordenial1= mysql_real_escape_string(htmlspecialchars($_POST['Reasonfordenial1'])); $FuturedatetopresentevidenceYes= mysql_real_escape_string(htmlspecialchars($_POST['FuturedatetopresentevidenceYes'])); $FuturedatetopresentevidenceNo= mysql_real_escape_string(htmlspecialchars($_POST['FuturedatetopresentevidenceNo'])); $PartydeniedrighttoevidencewitnessNo= mysql_real_escape_string(htmlspecialchars($_POST['PartydeniedrighttoevidencewitnessNo'])); $PartypreventedfromdiscoveryYes= mysql_real_escape_string(htmlspecialchars($_POST['PartypreventedfromdiscoveryYes'])); $Reason= mysql_real_escape_string(htmlspecialchars($_POST['Reason'])); $PartypreventedfromdiscoveryNo= mysql_real_escape_string(htmlspecialchars($_POST['PartypreventedfromdiscoveryNo'])); $PartiesgiveequalopportunitytospeakYes= mysql_real_escape_string(htmlspecialchars($_POST['PartiesgiveequalopportunitytospeakYes'])); $PartiesgiveequalopportunitytospeakNo= mysql_real_escape_string(htmlspecialchars($_POST['PartiesgiveequalopportunitytospeakNo'])); $Petitionergivenlessopportunity= mysql_real_escape_string(htmlspecialchars($_POST['Petitionergivenlessopportunity'])); $Respondentgivenlessopportunity= mysql_real_escape_string(htmlspecialchars($_POST['Respondentgivenlessopportunity'])); $PartydiscouragedfromspeakingpubliclyYes= mysql_real_escape_string(htmlspecialchars($_POST['PartydiscouragedfromspeakingpubliclyYes'])); $Whatwasjudgescomment= mysql_real_escape_string(htmlspecialchars($_POST['Whatwasjudgescomment'])); $PartydiscouragedfromspeakingpubliclyNo= mysql_real_escape_string(htmlspecialchars($_POST['PartydiscouragedfromspeakingpubliclyNo'])); $JUDICIALCONDUCTDEMEANOR= mysql_real_escape_string(htmlspecialchars($_POST['JUDICIALCONDUCTDEMEANOR'])); $WasaudienceaskedtoidentifyselfYes= mysql_real_escape_string(htmlspecialchars($_POST['WasaudienceaskedtoidentifyselfYes'])); $WasaudienceaskedtoidentifyselfNo= mysql_real_escape_string(htmlspecialchars($_POST['WasaudienceaskedtoidentifyselfNo'])); $WasanybodynotwitnessexcludedYes= mysql_real_escape_string(htmlspecialchars($_POST['WasanybodynotwitnessexcludedYes'])); $Whatreasongiven= mysql_real_escape_string(htmlspecialchars($_POST['Whatreasongiven'])); $WasanybodynotwitnessexcludedNo= mysql_real_escape_string(htmlspecialchars($_POST['WasanybodynotwitnessexcludedNo'])); $WasjudgecourteousrespectfulYes= mysql_real_escape_string(htmlspecialchars($_POST['WasjudgecourteousrespectfulYes'])); $WasjudgecourteousrespectfulNo= mysql_real_escape_string(htmlspecialchars($_POST['WasjudgecourteousrespectfulNo'])); $Towhomwasjudgedisrespectful= mysql_real_escape_string(htmlspecialchars($_POST['Towhomwasjudgedisrespectful'])); $DescribeDisrespect= mysql_real_escape_string(htmlspecialchars($_POST['DescribeDisrespect'])); $Howdiddisrespectedpersonreact1= mysql_real_escape_string(htmlspecialchars($_POST['Howdiddisrespectedpersonreact1'])); $DidanyoneelsespeakdisrespectfullyYes= mysql_real_escape_string(htmlspecialchars($_POST['DidanyoneelsespeakdisrespectfullyYes'])); $Whowasdisrespectful= mysql_real_escape_string(htmlspecialchars($_POST['Whowasdisrespectful'])); $Whowasdisrespected= mysql_real_escape_string(htmlspecialchars($_POST['Whowasdisrespected'])); $WhoWasDisrespectedDescribe= mysql_real_escape_string(htmlspecialchars($_POST['WhoWasDisrespectedDescribe'])); $Howdiddisrespectedpersonreact= mysql_real_escape_string(htmlspecialchars($_POST['Howdiddisrespectedpersonreact'])); $HowdidJudgeHandleSituationDisrespect= mysql_real_escape_string(htmlspecialchars($_POST['HowdidJudgeHandleSituationDisrespect'])); $DidanyoneelsespeakdisrespectfullyNo= mysql_real_escape_string(htmlspecialchars($_POST['DidanyoneelsespeakdisrespectfullyNo'])); $DidanyoneraisevioceactaggressiveYes= mysql_real_escape_string(htmlspecialchars($_POST['DidanyoneraisevioceactaggressiveYes'])); $Whowasaggressive= mysql_real_escape_string(htmlspecialchars($_POST['Whowasaggressive'])); $Whowasaggressedagainst= mysql_real_escape_string(htmlspecialchars($_POST['Whowasaggressedagainst'])); $WasWasAgressAgaintsDescribe= mysql_real_escape_string(htmlspecialchars($_POST['WasWasAgressAgaintsDescribe'])); $Howdidaggressedagainstpersonreact= mysql_real_escape_string(htmlspecialchars($_POST['Howdidaggressedagainstpersonreact'])); $HowdidjudgehandlesituationAggressed= mysql_real_escape_string(htmlspecialchars($_POST['HowdidjudgehandlesituationAggressed'])); $DidanyoneraisevoiceactaggressiveNo= mysql_real_escape_string(htmlspecialchars($_POST['DidanyoneraisevoiceactaggressiveNo'])); $DidapartycryYes= mysql_real_escape_string(htmlspecialchars($_POST['DidapartycryYes'])); $Whocried= mysql_real_escape_string(htmlspecialchars($_POST['Whocried'])); $Howdidjudgerespond= mysql_real_escape_string(htmlspecialchars($_POST['Howdidjudgerespond'])); $DidapartycryNo= mysql_real_escape_string(htmlspecialchars($_POST['DidapartycryNo'])); $DidjudgeappearirritatedangryatproseYes= mysql_real_escape_string(htmlspecialchars($_POST['DidjudgeappearirritatedangryatproseYes'])); $Howdidjudgebehavewhatwassaid= mysql_real_escape_string(htmlspecialchars($_POST['Howdidjudgebehavewhatwassaid'])); $DidjudgeappearirritatedangryatproseNo= mysql_real_escape_string(htmlspecialchars($_POST['DidjudgeappearirritatedangryatproseNo'])); $DidjudgeappearirritatedangryatproseNA= mysql_real_escape_string(htmlspecialchars($_POST['DidjudgeappearirritatedangryatproseNA'])); $DidapartyseemincapableYes= mysql_real_escape_string(htmlspecialchars($_POST['DidapartyseemincapableYes'])); $Describeconditionofparty= mysql_real_escape_string(htmlspecialchars($_POST['Describeconditionofparty'])); $Howdidjudgehandlesituation= mysql_real_escape_string(htmlspecialchars($_POST['Howdidjudgehandlesituation'])); $DidapartyseemincapableNo= mysql_real_escape_string(htmlspecialchars($_POST['DidapartyseemincapableNo'])); $IMPRESSIONS= mysql_real_escape_string(htmlspecialchars($_POST['IMPRESSIONS'])); $DiditseemtobeevenplayingfieldYes= mysql_real_escape_string(htmlspecialchars($_POST['DiditseemtobeevenplayingfieldYes'])); $DiditseemtobeevenplayingfieldNo= mysql_real_escape_string(htmlspecialchars($_POST['DiditseemtobeevenplayingfieldNo'])); $Whowasdisadvantaged= mysql_real_escape_string(htmlspecialchars($_POST['Whowasdisadvantaged'])); $DisadvantageWhy= mysql_real_escape_string(htmlspecialchars($_POST['DisadvantageWhy'])); $DidproseseemdisadvantagedbyattnyYes= mysql_real_escape_string(htmlspecialchars($_POST['DidproseseemdisadvantagedbyattnyYes'])); $DidproseseemdisadvantagedbyattnyNo= mysql_real_escape_string(htmlspecialchars($_POST['DidproseseemdisadvantagedbyattnyNo'])); $DidproseseemdisadvantagedbyattnyNA= mysql_real_escape_string(htmlspecialchars($_POST['DidproseseemdisadvantagedbyattnyNA'])); $WerebothheldtosamestandardYes= mysql_real_escape_string(htmlspecialchars($_POST['WerebothheldtosamestandardYes'])); $WerebothheldtosamestandardNo= mysql_real_escape_string(htmlspecialchars($_POST['WerebothheldtosamestandardNo'])); $Impressionwhynotheldtosamestandard= mysql_real_escape_string(htmlspecialchars($_POST['Impressionwhynotheldtosamestandard'])); $FamiliaritybetweenanyonebiasYes= mysql_real_escape_string(htmlspecialchars($_POST['FamiliaritybetweenanyonebiasYes'])); $FamilarityDescribe= mysql_real_escape_string(htmlspecialchars($_POST['FamilarityDescribe'])); $FamiliaritybetweenanyonebiasNo= mysql_real_escape_string(htmlspecialchars($_POST['FamiliaritybetweenanyonebiasNo'])); $FavoritismantagonismbyjudgeYes= mysql_real_escape_string(htmlspecialchars($_POST['FavoritismantagonismbyjudgeYes'])); $FavDescribe= mysql_real_escape_string(htmlspecialchars($_POST['FavDescribe'])); $FavoritismantagonismbyjudgeNo= mysql_real_escape_string(htmlspecialchars($_POST['FavoritismantagonismbyjudgeNo'])); $OtherRemarks= mysql_real_escape_string(htmlspecialchars($_POST['OtherRemarks'])); $ACCOMODATIONS= mysql_real_escape_string(htmlspecialchars($_POST['ACCOMODATIONS'])); $WasaninterpreterpresentYes= mysql_real_escape_string(htmlspecialchars($_POST['WasaninterpreterpresentYes'])); $InterpreterforPetitioner= mysql_real_escape_string(htmlspecialchars($_POST['InterpreterforPetitioner'])); $InterpreterforRespondent= mysql_real_escape_string(htmlspecialchars($_POST['InterpreterforRespondent'])); $WasaninterpreterpresentNo= mysql_real_escape_string(htmlspecialchars($_POST['WasaninterpreterpresentNo'])); $DideitherpartyaskforaccommodationYes= mysql_real_escape_string(htmlspecialchars($_POST['DideitherpartyaskforaccommodationYes'])); $RequestedbyPetitioner= mysql_real_escape_string(htmlspecialchars($_POST['RequestedbyPetitioner'])); $RequestedbyRespondent= mysql_real_escape_string(htmlspecialchars($_POST['RequestedbyRespondent'])); $Whataccommodationswererequested= mysql_real_escape_string(htmlspecialchars($_POST['Whataccommodationswererequested'])); $Whataccommodationswereprovided= mysql_real_escape_string(htmlspecialchars($_POST['Whataccommodationswereprovided'])); $DidthejudgerevealadiagnosisYes= mysql_real_escape_string(htmlspecialchars($_POST['DidthejudgerevealadiagnosisYes'])); $DidthejudgerevealadiagnosisNo= mysql_real_escape_string(htmlspecialchars($_POST['DidthejudgerevealadiagnosisNo'])); $DideitherpartyaskforaccommodationNo= mysql_real_escape_string(htmlspecialchars($_POST['DideitherpartyaskforaccommodationNo'])); $DideitherpartyaskforaccommodationUNK= mysql_real_escape_string(htmlspecialchars($_POST['DideitherpartyaskforaccommodationUNK'])); $DOMESTICVIOLENCECV= mysql_real_escape_string(htmlspecialchars($_POST['DOMESTICVIOLENCECV'])); $ProtectiveorderinplaceYes= mysql_real_escape_string(htmlspecialchars($_POST['ProtectiveorderinplaceYes'])); $Petitionerprotected= mysql_real_escape_string(htmlspecialchars($_POST['Petitionerprotected'])); $Respondentprotected= mysql_real_escape_string(htmlspecialchars($_POST['Respondentprotected'])); $Childrenprotected= mysql_real_escape_string(htmlspecialchars($_POST['Childrenprotected'])); $ProtectiveorderinplaceNo= mysql_real_escape_string(htmlspecialchars($_POST['ProtectiveorderinplaceNo'])); $ProtectiveorderinplaceUNK= mysql_real_escape_string(htmlspecialchars($_POST['ProtectiveorderinplaceUNK'])); $RestrainedpartywanttoterminateYes= mysql_real_escape_string(htmlspecialchars($_POST['RestrainedpartywanttoterminateYes'])); $WasprotectiveorderdismissedYes= mysql_real_escape_string(htmlspecialchars($_POST['WasprotectiveorderdismissedYes'])); $WasprotectiveorderdismissedNo= mysql_real_escape_string(htmlspecialchars($_POST['WasprotectiveorderdismissedNo'])); $RestrainedpartywanttoterminateNo= mysql_real_escape_string(htmlspecialchars($_POST['RestrainedpartywanttoterminateNo'])); $DidanyoneraiseDVallegationsYesDV= mysql_real_escape_string(htmlspecialchars($_POST['DidanyoneraiseDVallegationsYesDV'])); $DVPetitionerraisedallegations= mysql_real_escape_string(htmlspecialchars($_POST['DVPetitionerraisedallegations'])); $Respondentraisedallegations= mysql_real_escape_string(htmlspecialchars($_POST['Respondentraisedallegations'])); $Otherraisedallegations= mysql_real_escape_string(htmlspecialchars($_POST['Otherraisedallegations'])); $Physical1= mysql_real_escape_string(htmlspecialchars($_POST['Physical1'])); $Sexual1= mysql_real_escape_string(htmlspecialchars($_POST['Sexual1'])); $Verbalpsychological1= mysql_real_escape_string(htmlspecialchars($_POST['Verbalpsychological1'])); $Stalking1= mysql_real_escape_string(htmlspecialchars($_POST['Stalking1'])); $OtherHarassments= mysql_real_escape_string(htmlspecialchars($_POST['OtherHarassments'])); $DidallegeraskforrestrainingorderYes= mysql_real_escape_string(htmlspecialchars($_POST['DidallegeraskforrestrainingorderYes'])); $RestrainingOrderGrantedYes= mysql_real_escape_string(htmlspecialchars($_POST['RestrainingOrderGrantedYes'])); $JudgeexplainedconditionsYes= mysql_real_escape_string(htmlspecialchars($_POST['JudgeexplainedconditionsYes'])); $JudgeexplainedconditionsNo= mysql_real_escape_string(htmlspecialchars($_POST['JudgeexplainedconditionsNo'])); $JudgeorderweaponsturnedinYes= mysql_real_escape_string(htmlspecialchars($_POST['JudgeorderweaponsturnedinYes'])); $JudgeorderweaponsturnedinNo= mysql_real_escape_string(htmlspecialchars($_POST['JudgeorderweaponsturnedinNo'])); $Othersafetyorders= mysql_real_escape_string(htmlspecialchars($_POST['Othersafetyorders'])); $SafetyOrderWasRequestGrantedNo= mysql_real_escape_string(htmlspecialchars($_POST['SafetyOrderWasRequestGrantedNo'])); $SafetyOrderReasonfordenial= mysql_real_escape_string(htmlspecialchars($_POST['SafetyOrderReasonfordenial'])); $PartywithprotectiontohavecontactYes= mysql_real_escape_string(htmlspecialchars($_POST['PartywithprotectiontohavecontactYes'])); $Mediation= mysql_real_escape_string(htmlspecialchars($_POST['Mediation'])); $Coparentingclasses= mysql_real_escape_string(htmlspecialchars($_POST['Coparentingclasses'])); $Childexchanges= mysql_real_escape_string(htmlspecialchars($_POST['Childexchanges'])); $Whereexchangestotakeplace= mysql_real_escape_string(htmlspecialchars($_POST['Whereexchangestotakeplace'])); $ExchangeOther= mysql_real_escape_string(htmlspecialchars($_POST['ExchangeOther'])); $PartywithprotectiontohavecontactNo= mysql_real_escape_string(htmlspecialchars($_POST['PartywithprotectiontohavecontactNo'])); $WasprotectedpartyaccusedYes= mysql_real_escape_string(htmlspecialchars($_POST['WasprotectedpartyaccusedYes'])); $WasprotectedpartyaccusedNo= mysql_real_escape_string(htmlspecialchars($_POST['WasprotectedpartyaccusedNo'])); $WereallegationsminimizedYes= mysql_real_escape_string(htmlspecialchars($_POST['WereallegationsminimizedYes'])); $Whatgesturecomment= mysql_real_escape_string(htmlspecialchars($_POST['Whatgesturecomment'])); $WereallegationsminimizedNo= mysql_real_escape_string(htmlspecialchars($_POST['WereallegationsminimizedNo'])); $ProvisiontoleavesafelyYes= mysql_real_escape_string(htmlspecialchars($_POST['ProvisiontoleavesafelyYes'])); $ProvisiontoleavesafelyNo= mysql_real_escape_string(htmlspecialchars($_POST['ProvisiontoleavesafelyNo'])); $DidanyoneraiseDVallegationsNo= mysql_real_escape_string(htmlspecialchars($_POST['DidanyoneraiseDVallegationsNo'])); $CHILDABUSE= mysql_real_escape_string(htmlspecialchars($_POST['CHILDABUSE'])); $DidanyoneraiseallegationsofchildabuseYes= mysql_real_escape_string(htmlspecialchars($_POST['DidanyoneraiseallegationsofchildabuseYes'])); $Petitionerraisedallegations1= mysql_real_escape_string(htmlspecialchars($_POST['Petitionerraisedallegations1'])); $Respondentraisedallegations2= mysql_real_escape_string(htmlspecialchars($_POST['Respondentraisedallegations2'])); $Otherraisedallegations2= mysql_real_escape_string(htmlspecialchars($_POST['Otherraisedallegations2'])); $Physical5= mysql_real_escape_string(htmlspecialchars($_POST['Physical5'])); $Sexual5= mysql_real_escape_string(htmlspecialchars($_POST['Sexual5'])); $Verbalpsychological= mysql_real_escape_string(htmlspecialchars($_POST['Verbalpsychological'])); $Other5= mysql_real_escape_string(htmlspecialchars($_POST['Other5'])); $Age04= mysql_real_escape_string(htmlspecialchars($_POST['Age04'])); $Age510= mysql_real_escape_string(htmlspecialchars($_POST['Age510'])); $Age1114= mysql_real_escape_string(htmlspecialchars($_POST['Age1114'])); $Ageover14= mysql_real_escape_string(htmlspecialchars($_POST['Ageover14'])); $WasallegationalreadyreportedtoLEYes= mysql_real_escape_string(htmlspecialchars($_POST['WasallegationalreadyreportedtoLEYes'])); $WasallegationalreadyreportedtoLENo= mysql_real_escape_string(htmlspecialchars($_POST['WasallegationalreadyreportedtoLENo'])); $WasallegationalreadyreportedtoLEUNK= mysql_real_escape_string(htmlspecialchars($_POST['WasallegationalreadyreportedtoLEUNK'])); $WasinvestigativereportorderedYes= mysql_real_escape_string(htmlspecialchars($_POST['WasinvestigativereportorderedYes'])); $MDITlawenforcement= mysql_real_escape_string(htmlspecialchars($_POST['MDITlawenforcement'])); $ChildProtectiveServices= mysql_real_escape_string(htmlspecialchars($_POST['ChildProtectiveServices'])); $ProbationDept= mysql_real_escape_string(htmlspecialchars($_POST['ProbationDept'])); $FCevaluatorName= mysql_real_escape_string(htmlspecialchars($_POST['FCevaluatorName'])); $FCmediatorName= mysql_real_escape_string(htmlspecialchars($_POST['FCmediatorName'])); $FcOther= mysql_real_escape_string(htmlspecialchars($_POST['FcOther'])); $IfsexabuseallegedFC3118orderedYes= mysql_real_escape_string(htmlspecialchars($_POST['IfsexabuseallegedFC3118orderedYes'])); $Nameofevalinvestigator= mysql_real_escape_string(htmlspecialchars($_POST['Nameofevalinvestigator'])); $IfsexabuseallegedFC3118orderedNo= mysql_real_escape_string(htmlspecialchars($_POST['IfsexabuseallegedFC3118orderedNo'])); $WasinvestigativereportorderedNo= mysql_real_escape_string(htmlspecialchars($_POST['WasinvestigativereportorderedNo'])); $WaschildorderedtocontactwithabuserYes= mysql_real_escape_string(htmlspecialchars($_POST['WaschildorderedtocontactwithabuserYes'])); $Unsupervisedcontact= mysql_real_escape_string(htmlspecialchars($_POST['Unsupervisedcontact'])); $Contactsupervisedbyprofessional= mysql_real_escape_string(htmlspecialchars($_POST['Contactsupervisedbyprofessional'])); $Contactsupervisedbynonproneutral= mysql_real_escape_string(htmlspecialchars($_POST['Contactsupervisedbynonproneutral'])); $Contactsupervisedbyfamilyfriend= mysql_real_escape_string(htmlspecialchars($_POST['Contactsupervisedbyfamilyfriend'])); $Parentchildtherapy= mysql_real_escape_string(htmlspecialchars($_POST['Parentchildtherapy'])); $ParentChildOther= mysql_real_escape_string(htmlspecialchars($_POST['ParentChildOther'])); $WaschildorderedtocontactwithabuserNo= mysql_real_escape_string(htmlspecialchars($_POST['WaschildorderedtocontactwithabuserNo'])); $DidallegeraskforprotectionforchildYes= mysql_real_escape_string(htmlspecialchars($_POST['DidallegeraskforprotectionforchildYes'])); $WasrequestgrantedYes= mysql_real_escape_string(htmlspecialchars($_POST['WasrequestgrantedYes'])); $WasrequestgrantedNo= mysql_real_escape_string(htmlspecialchars($_POST['WasrequestgrantedNo'])); $PotectionReasonfordenial= mysql_real_escape_string(htmlspecialchars($_POST['PotectionReasonfordenial'])); $WasallegeraccusedYes= mysql_real_escape_string(htmlspecialchars($_POST['WasallegeraccusedYes'])); $Whoaccusedalleger= mysql_real_escape_string(htmlspecialchars($_POST['Whoaccusedalleger'])); $WasallegeraccusedNo= mysql_real_escape_string(htmlspecialchars($_POST['WasallegeraccusedNo'])); $DidjudgeminimizeYes= mysql_real_escape_string(htmlspecialchars($_POST['DidjudgeminimizeYes'])); $Describegesturescomments= mysql_real_escape_string(htmlspecialchars($_POST['Describegesturescomments'])); $DidjudgeminimizeNo= mysql_real_escape_string(htmlspecialchars($_POST['DidjudgeminimizeNo'])); $DidanyoneraiseallegationsofchildabuseNo= mysql_real_escape_string(htmlspecialchars($_POST['DidanyoneraiseallegationsofchildabuseNo'])); $CHILDSINPUT= mysql_real_escape_string(htmlspecialchars($_POST['CHILDSINPUT'])); $RequestchildappearYes= mysql_real_escape_string(htmlspecialchars($_POST['RequestchildappearYes'])); $Petitionerrequest= mysql_real_escape_string(htmlspecialchars($_POST['Petitionerrequest'])); $Respondentrequest= mysql_real_escape_string(htmlspecialchars($_POST['Respondentrequest'])); $Childsattorney2= mysql_real_escape_string(htmlspecialchars($_POST['Childsattorney2'])); $AttorneyOther= mysql_real_escape_string(htmlspecialchars($_POST['AttorneyOther'])); $Judgeagreed1= mysql_real_escape_string(htmlspecialchars($_POST['Judgeagreed1'])); $Judgedenied2= mysql_real_escape_string(htmlspecialchars($_POST['Judgedenied2'])); $Reasonfordenial2= mysql_real_escape_string(htmlspecialchars($_POST['Reasonfordenial2'])); $Judgereservedforfuturehearing= mysql_real_escape_string(htmlspecialchars($_POST['Judgereservedforfuturehearing'])); $Dateofhearing1= mysql_real_escape_string(htmlspecialchars($_POST['Dateofhearing1'])); $AttorneyforchildYes= mysql_real_escape_string(htmlspecialchars($_POST['AttorneyforchildYes'])); $Childsattorney= mysql_real_escape_string(htmlspecialchars($_POST['Childsattorney'])); $GuardianAdLitem= mysql_real_escape_string(htmlspecialchars($_POST['GuardianAdLitem'])); $BestInterestAttorney= mysql_real_escape_string(htmlspecialchars($_POST['BestInterestAttorney'])); $Wherephysicallyincourtroom= mysql_real_escape_string(htmlspecialchars($_POST['Wherephysicallyincourtroom'])); $AppeartobealignedprejudicedYes= mysql_real_escape_string(htmlspecialchars($_POST['AppeartobealignedprejudicedYes'])); $Howshowfavoritism= mysql_real_escape_string(htmlspecialchars($_POST['Howshowfavoritism'])); $AppeartobealignedprejudicedNo= mysql_real_escape_string(htmlspecialchars($_POST['AppeartobealignedprejudicedNo'])); $DidchildsattorneygivereportinputYes= mysql_real_escape_string(htmlspecialchars($_POST['DidchildsattorneygivereportinputYes'])); $WaschildpresenttotestifyYes= mysql_real_escape_string(htmlspecialchars($_POST['WaschildpresenttotestifyYes'])); $Under10testified= mysql_real_escape_string(htmlspecialchars($_POST['Under10testified'])); $Age1014testified= mysql_real_escape_string(htmlspecialchars($_POST['Age1014testified'])); $Over14testified= mysql_real_escape_string(htmlspecialchars($_POST['Over14testified'])); $Examinedonwitnessstand= mysql_real_escape_string(htmlspecialchars($_POST['Examinedonwitnessstand'])); $ObjectiontoopencourtquestionYes= mysql_real_escape_string(htmlspecialchars($_POST['ObjectiontoopencourtquestionYes'])); $Whoobjected= mysql_real_escape_string(htmlspecialchars($_POST['Whoobjected'])); $ObjectiontoopencourtquestionNo= mysql_real_escape_string(htmlspecialchars($_POST['ObjectiontoopencourtquestionNo'])); $WaschildplacedunderoathYes= mysql_real_escape_string(htmlspecialchars($_POST['WaschildplacedunderoathYes'])); $WaschildplacedunderoathNo= mysql_real_escape_string(htmlspecialchars($_POST['WaschildplacedunderoathNo'])); $Judgequestionedchild1= mysql_real_escape_string(htmlspecialchars($_POST['Judgequestionedchild1'])); $Childsattorneyquestionedchild1= mysql_real_escape_string(htmlspecialchars($_POST['Childsattorneyquestionedchild1'])); $Petitionersattorneyquestionedchild1= mysql_real_escape_string(htmlspecialchars($_POST['Petitionersattorneyquestionedchild1'])); $Petitionerquestionedchild1= mysql_real_escape_string(htmlspecialchars($_POST['Petitionerquestionedchild1'])); $Respondentsattorneyquestionedchild1= mysql_real_escape_string(htmlspecialchars($_POST['Respondentsattorneyquestionedchild1'])); $Respondentquestionedchild1= mysql_real_escape_string(htmlspecialchars($_POST['Respondentquestionedchild1'])); $PartydeniedabilitytoquestionYes= mysql_real_escape_string(htmlspecialchars($_POST['PartydeniedabilitytoquestionYes'])); $Petitionerdenied= mysql_real_escape_string(htmlspecialchars($_POST['Petitionerdenied'])); $Respondentdenied= mysql_real_escape_string(htmlspecialchars($_POST['Respondentdenied'])); $PartydeniedabilitytoquestionNo= mysql_real_escape_string(htmlspecialchars($_POST['PartydeniedabilitytoquestionNo'])); $Howdidchildreacttoexamination= mysql_real_escape_string(htmlspecialchars($_POST['Howdidchildreacttoexamination'])); $Questionedinchambers= mysql_real_escape_string(htmlspecialchars($_POST['Questionedinchambers'])); $DidapartyobjectYes= mysql_real_escape_string(htmlspecialchars($_POST['DidapartyobjectYes'])); $DidapartyobjectNo= mysql_real_escape_string(htmlspecialchars($_POST['DidapartyobjectNo'])); $Petitionerwenttochambers= mysql_real_escape_string(htmlspecialchars($_POST['Petitionerwenttochambers'])); $Petitionersattorneywenttochambers= mysql_real_escape_string(htmlspecialchars($_POST['Petitionersattorneywenttochambers'])); $Respondentwenttochambers= mysql_real_escape_string(htmlspecialchars($_POST['Respondentwenttochambers'])); $Respondentsattorneywenttochambers= mysql_real_escape_string(htmlspecialchars($_POST['Respondentsattorneywenttochambers'])); $Childsattorneywenttochambers= mysql_real_escape_string(htmlspecialchars($_POST['Childsattorneywenttochambers'])); $Courtreporterwenttochambers= mysql_real_escape_string(htmlspecialchars($_POST['Courtreporterwenttochambers'])); $CourtpreventaccesstorecordYes= mysql_real_escape_string(htmlspecialchars($_POST['CourtpreventaccesstorecordYes'])); $CourtpreventaccesstorecordNo= mysql_real_escape_string(htmlspecialchars($_POST['CourtpreventaccesstorecordNo'])); $Questionedbyremoteaccess= mysql_real_escape_string(htmlspecialchars($_POST['Questionedbyremoteaccess'])); $Atcourthousevideoseparatelocation= mysql_real_escape_string(htmlspecialchars($_POST['Atcourthousevideoseparatelocation'])); $AwayfromcourthousebySkype= mysql_real_escape_string(htmlspecialchars($_POST['AwayfromcourthousebySkype'])); $SkypeOther= mysql_real_escape_string(htmlspecialchars($_POST['SkypeOther'])); $ChildunderoathYes= mysql_real_escape_string(htmlspecialchars($_POST['ChildunderoathYes'])); $ChildunderoathNo= mysql_real_escape_string(htmlspecialchars($_POST['ChildunderoathNo'])); $Judgequestionedchild= mysql_real_escape_string(htmlspecialchars($_POST['Judgequestionedchild'])); $Childsattorneyquestionedchild= mysql_real_escape_string(htmlspecialchars($_POST['Childsattorneyquestionedchild'])); $Petitionerquestionedchild= mysql_real_escape_string(htmlspecialchars($_POST['Petitionerquestionedchild'])); $Petitionersattorneyquestionedchild= mysql_real_escape_string(htmlspecialchars($_POST['Petitionersattorneyquestionedchild'])); $Respondentquestionedchild= mysql_real_escape_string(htmlspecialchars($_POST['Respondentquestionedchild'])); $Respondentsattorneyquestionedchild= mysql_real_escape_string(htmlspecialchars($_POST['Respondentsattorneyquestionedchild'])); $Otherquestionedchild= mysql_real_escape_string(htmlspecialchars($_POST['Otherquestionedchild'])); $WasapartydeniedquestionchildYes= mysql_real_escape_string(htmlspecialchars($_POST['WasapartydeniedquestionchildYes'])); $Petitionerpreventedquestions= mysql_real_escape_string(htmlspecialchars($_POST['Petitionerpreventedquestions'])); $Respondentpreventedquestions= mysql_real_escape_string(htmlspecialchars($_POST['Respondentpreventedquestions'])); $WasapartydeniedquestionchildNo= mysql_real_escape_string(htmlspecialchars($_POST['WasapartydeniedquestionchildNo'])); $WaschildpresenttotestifyNo= mysql_real_escape_string(htmlspecialchars($_POST['WaschildpresenttotestifyNo'])); $RequestchildappearNo= mysql_real_escape_string(htmlspecialchars($_POST['RequestchildappearNo'])); // check that firstname/lastname fields are both filled in if ($Volunteer == '' || $CaseShortTitle == '') { // generate error message $error = 'ERROR: Please fill in all required fields!'; //error, display form renderForm($id, $Volunteer, $CaseShortTitle, $CaseNumber, $HearingDate, $HearingTime, $Department, $JudgeCommissioner, $JMale, $JFemale, $PetitionersName, $PMale, $PFemale, $RespondentsName, $Male, $Female, $ExParteHearing, $LawandMotionHearing, $Hearing, $Trial, $SettlementConference, $COURTROOMAPPEARANCES, $PetitionerRepresented, $PetitionerProSe, $RespondentRepresented, $RespondentProSee, $AttorneyforChildrenName, $AMale, $AFemale, $Other2, $NonAppearanceReason, $AppearedbyphoneYes, $AppearedbyPhoneNo, $AppearedBySkypeYes, $AppearedbySkypeNo, $MinuteOrderProvidedatEndYes, $MinuteOrderprovidedatendNo, $ISSUELITIGATION, $Divorce, $ChildCustody, $ChildSupport, $ChildVisitation, $RestrainingOrder, $SpousalSupport, $Contempt, $AttorneyFees, $OtherNotes1, $CaseContinuedToFutureDateYes, $DateContHearing, $CaseContinuedToFutureDateNo, $stipulationsYes, $JudgeAskIfPartiesUnderstood, $JudgeAskIfPartiesUnderstoodNo, $stipulationsNo, $CHILDCUSTODYVISITSUPPORTORDERS, $CustodyVisitOrdersInPlacePriorToHearing, $JointPhysicalCustody, $JointLegalCustody, $LegalCustodyPetitioner, $LegalCustodyRespondent, $PhysicalcustodyPetitioner, $PhysicalCustodyRespondent, $UnsupervisedvisitationtoPetitioner, $UnsupervisedvisitationtoRepondent, $SupervisedvisitationtoPetitioner, $SupervisedvisitationtoRepondent, $RequesttochangecustodyYes, $MadebyPetitioner, $MadebyRespondent, $RequesttochangecustodyNo, $RequesttochangevisitationYes, $ChangeVisitationMadebyPetitioner, $ChangeVisitationMadebyRespondent, $RequesttochangevisitationNo, $Reasonforrequesttochangecustodyvisitation, $Domesticviolence, $Childabuseneglect, $Relocation, $Educationalissues, $Childbehavioralissues, $Childswishes, $Developmentalstageofchild, $DevelopmentOther, $ChangesmadetocustodyorderYes, $SolelegaltoPetitioner, $SolelegaltoRespondent, $JointlegaltoPetitioner, $JointlegaltoRespondent, $SolephysicaltoPetitioner, $SolephysicaltoRespondent, $JointphysicalprimarytoPetitioner, $JointphysicalprimarytoRespondent, $ChangesmadetovisitationorderYes, $IncreasedforPetitioner, $IncreasedforRespondent, $TerminatedforPetitioner, $TerminatedforRespondent, $SupervisedforPetitioner, $SupervisedforRespondent, $ChangestocustodyorvisitationNo, $PriororOrCurrentallegationsofDVCAYes, $PriororOrCurrentallegationsofDVCAYesNo, $PriororOrCurrentallegationsofDVCAYesUNK, $PartyrequestingincreasebehindsupportYes, $PartyrequestingincreasebehindsupportNo, $PartyrequestingincreasebehindsupportUNK, $WasapartyrequestingchangeinsupportYes, $Primarycustodialparent, $Otherparent, $Supportincreased, $Supportdecreased, $Nochangeinsupport, $WasapartyrequestingchangeinsupportNo, $WasapartyrequestingchangeinsupportUNK, $DUEPROCESSCONSTITUTIONALRIGHTS, $DidacourtreportermakearecordYes, $DidacourtreportermakearecordNo, $DidapartyminorattnyrequestobjectYes, $DidhearingproceedanywayYes, $DidhearingproceedanywayNo, $DidapartyminorattnyrequestobjectNo, $DidapartyasktoaudiovideotapeYes, $VideoTapegrantedYes, $VideoTapegrantedNo, $DidapartyasktoaudiovideotapeNo, $DidmeetingoccurinchambersYes, $Whowentintochambers, $Petitionersattorney, $Respondentsattorney, $Childsattorney1, $Petitioner1, $Respondent1, $Courtreporter, $Ifpetitionerrespondentexcludedwhy, $didjudgesealrecordYes, $didjudgesealrecordNo, $CourtappointeereportinfopresentedYes, $AuthorMediator, $AuthorEvaluatorinvestigator, $AuthorCourtappointedtherapist, $AuthorCoparentingcoordinator, $DidapartyobjecttoreportinfoYes, $Didnotreceivereport10daysprior, $Reportinfohearsay, $Reportinfonotauthenticated, $JudgeruledonobjectionSustained, $JudgeruledonobjectionOverruled, $WasobjectingpartyabletoexamineYes, $WasobjectingpartyabletoexamineNo, $WasahearingdatesetYes, $WasahearingdatesetNo, $DidapartyobjecttoreportinfoNo, $CourtappointeereportinfopresentedNo, $DidAnyOneElseRepresentYes, $Whopresentedtheinfo, $WasahearsayobjectionmadeYes, $Bywhom, $DidcourthearconsideranywayYes, $DidcourthearconsideranywayNo, $WasahearsayobjectionmadeNo, $DidAnyOneElseRepresentNo, $PartydeniedrighttoevidencewitnessYes, $Petitioner11, $Respondent11, $Reasonfordenial1, $FuturedatetopresentevidenceYes, $FuturedatetopresentevidenceNo, $PartydeniedrighttoevidencewitnessNo, $PartypreventedfromdiscoveryYes, $Reason, $PartypreventedfromdiscoveryNo, $PartiesgiveequalopportunitytospeakYes, $PartiesgiveequalopportunitytospeakNo, $Petitionergivenlessopportunity, $Respondentgivenlessopportunity, $PartydiscouragedfromspeakingpubliclyYes, $Whatwasjudgescomment, $PartydiscouragedfromspeakingpubliclyNo, $JUDICIALCONDUCTDEMEANOR, $WasaudienceaskedtoidentifyselfYes, $WasaudienceaskedtoidentifyselfNo, $WasanybodynotwitnessexcludedYes, $Whatreasongiven, $WasanybodynotwitnessexcludedNo, $WasjudgecourteousrespectfulYes, $WasjudgecourteousrespectfulNo, $Towhomwasjudgedisrespectful, $DescribeDisrespect, $Howdiddisrespectedpersonreact1, $DidanyoneelsespeakdisrespectfullyYes, $Whowasdisrespectful, $Whowasdisrespected, $WhoWasDisrespectedDescribe, $Howdiddisrespectedpersonreact, $HowdidJudgeHandleSituationDisrespect, $DidanyoneelsespeakdisrespectfullyNo, $DidanyoneraisevioceactaggressiveYes, $Whowasaggressive, $Whowasaggressedagainst, $WasWasAgressAgaintsDescribe, $Howdidaggressedagainstpersonreact, $HowdidjudgehandlesituationAggressed, $DidanyoneraisevoiceactaggressiveNo, $DidapartycryYes, $Whocried, $Howdidjudgerespond, $DidapartycryNo, $DidjudgeappearirritatedangryatproseYes, $Howdidjudgebehavewhatwassaid, $DidjudgeappearirritatedangryatproseNo, $DidjudgeappearirritatedangryatproseNA, $DidapartyseemincapableYes, $Describeconditionofparty, $Howdidjudgehandlesituation, $DidapartyseemincapableNo, $IMPRESSIONS, $DiditseemtobeevenplayingfieldYes, $DiditseemtobeevenplayingfieldNo, $Whowasdisadvantaged, $DisadvantageWhy, $DidproseseemdisadvantagedbyattnyYes, $DidproseseemdisadvantagedbyattnyNo, $DidproseseemdisadvantagedbyattnyNA, $WerebothheldtosamestandardYes, $WerebothheldtosamestandardNo, $Impressionwhynotheldtosamestandard, $FamiliaritybetweenanyonebiasYes, $FamilarityDescribe, $FamiliaritybetweenanyonebiasNo, $FavoritismantagonismbyjudgeYes, $FavDescribe, $FavoritismantagonismbyjudgeNo, $OtherRemarks, $ACCOMODATIONS, $WasaninterpreterpresentYes, $InterpreterforPetitioner, $InterpreterforRespondent, $WasaninterpreterpresentNo, $DideitherpartyaskforaccommodationYes, $RequestedbyPetitioner, $RequestedbyRespondent, $Whataccommodationswererequested, $Whataccommodationswereprovided, $DidthejudgerevealadiagnosisYes, $DidthejudgerevealadiagnosisNo, $DideitherpartyaskforaccommodationNo, $DideitherpartyaskforaccommodationUNK, $DOMESTICVIOLENCECV, $ProtectiveorderinplaceYes, $Petitionerprotected, $Respondentprotected, $Childrenprotected, $ProtectiveorderinplaceNo, $ProtectiveorderinplaceUNK, $RestrainedpartywanttoterminateYes, $WasprotectiveorderdismissedYes, $WasprotectiveorderdismissedNo, $RestrainedpartywanttoterminateNo, $DidanyoneraiseDVallegationsYesDV, $DVPetitionerraisedallegations, $Respondentraisedallegations, $Otherraisedallegations, $Physical1, $Sexual1, $Verbalpsychological1, $Stalking1, $OtherHarassments, $DidallegeraskforrestrainingorderYes, $RestrainingOrderGrantedYes, $JudgeexplainedconditionsYes, $JudgeexplainedconditionsNo, $JudgeorderweaponsturnedinYes, $JudgeorderweaponsturnedinNo, $Othersafetyorders, $SafetyOrderWasRequestGrantedNo, $SafetyOrderReasonfordenial, $PartywithprotectiontohavecontactYes, $Mediation, $Coparentingclasses, $Childexchanges, $Whereexchangestotakeplace, $ExchangeOther, $PartywithprotectiontohavecontactNo, $WasprotectedpartyaccusedYes, $WasprotectedpartyaccusedNo, $WereallegationsminimizedYes, $Whatgesturecomment, $WereallegationsminimizedNo, $ProvisiontoleavesafelyYes, $ProvisiontoleavesafelyNo, $DidanyoneraiseDVallegationsNo, $CHILDABUSE, $DidanyoneraiseallegationsofchildabuseYes, $Petitionerraisedallegations1, $Respondentraisedallegations2, $Otherraisedallegations2, $Physical5, $Sexual5, $Verbalpsychological, $Other5, $Age04, $Age510, $Age1114, $Ageover14, $WasallegationalreadyreportedtoLEYes, $WasallegationalreadyreportedtoLENo, $WasallegationalreadyreportedtoLEUNK, $WasinvestigativereportorderedYes, $MDITlawenforcement, $ChildProtectiveServices, $ProbationDept, $FCevaluatorName, $FCmediatorName, $FcOther, $IfsexabuseallegedFC3118orderedYes, $Nameofevalinvestigator, $IfsexabuseallegedFC3118orderedNo, $WasinvestigativereportorderedNo, $WaschildorderedtocontactwithabuserYes, $Unsupervisedcontact, $Contactsupervisedbyprofessional, $Contactsupervisedbynonproneutral, $Contactsupervisedbyfamilyfriend, $Parentchildtherapy, $ParentChildOther, $WaschildorderedtocontactwithabuserNo, $DidallegeraskforprotectionforchildYes, $WasrequestgrantedYes, $WasrequestgrantedNo, $PotectionReasonfordenial, $WasallegeraccusedYes, $Whoaccusedalleger, $WasallegeraccusedNo, $DidjudgeminimizeYes, $Describegesturescomments, $DidjudgeminimizeNo, $DidanyoneraiseallegationsofchildabuseNo, $CHILDSINPUT, $RequestchildappearYes, $Petitionerrequest, $Respondentrequest, $Childsattorney2, $AttorneyOther, $Judgeagreed1, $Judgedenied2, $Reasonfordenial2, $Judgereservedforfuturehearing, $Dateofhearing1, $AttorneyforchildYes, $Childsattorney, $GuardianAdLitem, $BestInterestAttorney, $Wherephysicallyincourtroom, $AppeartobealignedprejudicedYes, $Howshowfavoritism, $AppeartobealignedprejudicedNo, $DidchildsattorneygivereportinputYes, $WaschildpresenttotestifyYes, $Under10testified, $Age1014testified, $Over14testified, $Examinedonwitnessstand, $ObjectiontoopencourtquestionYes, $Whoobjected, $ObjectiontoopencourtquestionNo, $WaschildplacedunderoathYes, $WaschildplacedunderoathNo, $Judgequestionedchild1, $Childsattorneyquestionedchild1, $Petitionersattorneyquestionedchild1, $Petitionerquestionedchild1, $Respondentsattorneyquestionedchild1, $Respondentquestionedchild1, $PartydeniedabilitytoquestionYes, $Petitionerdenied, $Respondentdenied, $PartydeniedabilitytoquestionNo, $Howdidchildreacttoexamination, $Questionedinchambers, $DidapartyobjectYes, $DidapartyobjectNo, $Petitionerwenttochambers, $Petitionersattorneywenttochambers, $Respondentwenttochambers, $Respondentsattorneywenttochambers, $Childsattorneywenttochambers, $Courtreporterwenttochambers, $CourtpreventaccesstorecordYes, $CourtpreventaccesstorecordNo, $Questionedbyremoteaccess, $Atcourthousevideoseparatelocation, $AwayfromcourthousebySkype, $SkypeOther, $ChildunderoathYes, $ChildunderoathNo, $Judgequestionedchild, $Childsattorneyquestionedchild, $Petitionerquestionedchild, $Petitionersattorneyquestionedchild, $Respondentquestionedchild, $Respondentsattorneyquestionedchild, $Otherquestionedchild, $WasapartydeniedquestionchildYes, $Petitionerpreventedquestions, $Respondentpreventedquestions, $WasapartydeniedquestionchildNo, $WaschildpresenttotestifyNo, $RequestchildappearNo, $error); } else { // save the data to the database mysql_query("UPDATE Sheet1 SET Volunteer=['$Volunteer'], CaseShortTitle=['$CaseShortTitle'], CaseNumber=['$CaseNumber'], HearingDate=['$HearingDate'], HearingTime=['$HearingTime'], Department=['$Department'], JudgeCommissioner=['$JudgeCommissioner'], JMale=['$JMale'], JFemale=['$JFemale'], PetitionersName=['$PetitionersName'], PMale=['$PMale'], PFemale=['$PFemale'], RespondentsName=['$RespondentsName'], Male=['$Male'], Female=['$Female'], ExParteHearing=['$ExParteHearing'], LawandMotionHearing=['$LawandMotionHearing'], Hearing=['$Hearing'], Trial=['$Trial'], SettlementConference=['$SettlementConference'], COURTROOMAPPEARANCES=['$COURTROOMAPPEARANCES'], PetitionerRepresented=['$PetitionerRepresented'], PetitionerProSe=['$PetitionerProSe'], RespondentRepresented=['$RespondentRepresented'], RespondentProSee=['$RespondentProSee'], AttorneyforChildrenName=['$AttorneyforChildrenName'], AMale=['$AMale'], AFemale=['$AFemale'], Other2=['$Other2'], NonAppearanceReason=['$NonAppearanceReason'], AppearedbyphoneYes=['$AppearedbyphoneYes'], AppearedbyPhoneNo=['$AppearedbyPhoneNo'], AppearedBySkypeYes=['$AppearedBySkypeYes'], AppearedbySkypeNo=['$AppearedbySkypeNo'], MinuteOrderProvidedatEndYes=['$MinuteOrderProvidedatEndYes'], MinuteOrderprovidedatendNo=['$MinuteOrderprovidedatendNo'], ISSUELITIGATION=['$ISSUELITIGATION'], Divorce=['$Divorce'], ChildCustody=['$ChildCustody'], ChildSupport=['$ChildSupport'], ChildVisitation=['$ChildVisitation'], RestrainingOrder=['$RestrainingOrder'], SpousalSupport=['$SpousalSupport'], Contempt=['$Contempt'], AttorneyFees=['$AttorneyFees'], OtherNotes1=['$OtherNotes1'], CaseContinuedToFutureDateYes=['$CaseContinuedToFutureDateYes'], DateContHearing=['$DateContHearing'], CaseContinuedToFutureDateNo=['$CaseContinuedToFutureDateNo'], stipulationsYes=['$stipulationsYes'], JudgeAskIfPartiesUnderstood=['$JudgeAskIfPartiesUnderstood'], JudgeAskIfPartiesUnderstoodNo=['$JudgeAskIfPartiesUnderstoodNo'], stipulationsNo=['$stipulationsNo'], CHILDCUSTODYVISITSUPPORTORDERS=['$CHILDCUSTODYVISITSUPPORTORDERS'], CustodyVisitOrdersInPlacePriorToHearing=['$CustodyVisitOrdersInPlacePriorToHearing'], JointPhysicalCustody=['$JointPhysicalCustody'], JointLegalCustody=['$JointLegalCustody'], LegalCustodyPetitioner=['$LegalCustodyPetitioner'], LegalCustodyRespondent=['$LegalCustodyRespondent'], PhysicalcustodyPetitioner=['$PhysicalcustodyPetitioner'], PhysicalCustodyRespondent=['$PhysicalCustodyRespondent'], UnsupervisedvisitationtoPetitioner=['$UnsupervisedvisitationtoPetitioner'], UnsupervisedvisitationtoRepondent=['$UnsupervisedvisitationtoRepondent'], SupervisedvisitationtoPetitioner=['$SupervisedvisitationtoPetitioner'], SupervisedvisitationtoRepondent=['$SupervisedvisitationtoRepondent'], RequesttochangecustodyYes=['$RequesttochangecustodyYes'], MadebyPetitioner=['$MadebyPetitioner'], MadebyRespondent=['$MadebyRespondent'], RequesttochangecustodyNo=['$RequesttochangecustodyNo'], RequesttochangevisitationYes=['$RequesttochangevisitationYes'], ChangeVisitationMadebyPetitioner=['$ChangeVisitationMadebyPetitioner'], ChangeVisitationMadebyRespondent=['$ChangeVisitationMadebyRespondent'], RequesttochangevisitationNo=['$RequesttochangevisitationNo'], Reasonforrequesttochangecustodyvisitation=['$Reasonforrequesttochangecustodyvisitation'], Domesticviolence=['$Domesticviolence'], Childabuseneglect=['$Childabuseneglect'], Relocation=['$Relocation'], Educationalissues=['$Educationalissues'], Childbehavioralissues=['$Childbehavioralissues'], Childswishes=['$Childswishes'], Developmentalstageofchild=['$Developmentalstageofchild'], DevelopmentOther=['$DevelopmentOther'], ChangesmadetocustodyorderYes=['$ChangesmadetocustodyorderYes'], SolelegaltoPetitioner=['$SolelegaltoPetitioner'], SolelegaltoRespondent=['$SolelegaltoRespondent'], JointlegaltoPetitioner=['$JointlegaltoPetitioner'], JointlegaltoRespondent=['$JointlegaltoRespondent'], SolephysicaltoPetitioner=['$SolephysicaltoPetitioner'], SolephysicaltoRespondent=['$SolephysicaltoRespondent'], JointphysicalprimarytoPetitioner=['$JointphysicalprimarytoPetitioner'], JointphysicalprimarytoRespondent=['$JointphysicalprimarytoRespondent'], ChangesmadetovisitationorderYes=['$ChangesmadetovisitationorderYes'], IncreasedforPetitioner=['$IncreasedforPetitioner'], IncreasedforRespondent=['$IncreasedforRespondent'], TerminatedforPetitioner=['$TerminatedforPetitioner'], TerminatedforRespondent=['$TerminatedforRespondent'], SupervisedforPetitioner=['$SupervisedforPetitioner'], SupervisedforRespondent=['$SupervisedforRespondent'], ChangestocustodyorvisitationNo=['$ChangestocustodyorvisitationNo'], PriororOrCurrentallegationsofDVCAYes=['$PriororOrCurrentallegationsofDVCAYes'], PriororOrCurrentallegationsofDVCAYesNo=['$PriororOrCurrentallegationsofDVCAYesNo'], PriororOrCurrentallegationsofDVCAYesUNK=['$PriororOrCurrentallegationsofDVCAYesUNK'], PartyrequestingincreasebehindsupportYes=['$PartyrequestingincreasebehindsupportYes'], PartyrequestingincreasebehindsupportNo=['$PartyrequestingincreasebehindsupportNo'], PartyrequestingincreasebehindsupportUNK=['$PartyrequestingincreasebehindsupportUNK'], WasapartyrequestingchangeinsupportYes=['$WasapartyrequestingchangeinsupportYes'], Primarycustodialparent=['$Primarycustodialparent'], Otherparent=['$Otherparent'], Supportincreased=['$Supportincreased'], Supportdecreased=['$Supportdecreased'], Nochangeinsupport=['$Nochangeinsupport'], WasapartyrequestingchangeinsupportNo=['$WasapartyrequestingchangeinsupportNo'], WasapartyrequestingchangeinsupportUNK=['$WasapartyrequestingchangeinsupportUNK'], DUEPROCESSCONSTITUTIONALRIGHTS=['$DUEPROCESSCONSTITUTIONALRIGHTS'], DidacourtreportermakearecordYes=['$DidacourtreportermakearecordYes'], DidacourtreportermakearecordNo=['$DidacourtreportermakearecordNo'], DidapartyminorattnyrequestobjectYes=['$DidapartyminorattnyrequestobjectYes'], DidhearingproceedanywayYes=['$DidhearingproceedanywayYes'], DidhearingproceedanywayNo=['$DidhearingproceedanywayNo'], DidapartyminorattnyrequestobjectNo=['$DidapartyminorattnyrequestobjectNo'], DidapartyasktoaudiovideotapeYes=['$DidapartyasktoaudiovideotapeYes'], VideoTapegrantedYes=['$VideoTapegrantedYes'], VideoTapegrantedNo=['$VideoTapegrantedNo'], DidapartyasktoaudiovideotapeNo=['$DidapartyasktoaudiovideotapeNo'], DidmeetingoccurinchambersYes=['$DidmeetingoccurinchambersYes'], Whowentintochambers=['$Whowentintochambers'], Petitionersattorney=['$Petitionersattorney'], Respondentsattorney=['$Respondentsattorney'], Childsattorney1=['$Childsattorney1'], Petitioner1=['$Petitioner1'], Respondent1=['$Respondent1'], Courtreporter=['$Courtreporter'], Ifpetitionerrespondentexcludedwhy=['$Ifpetitionerrespondentexcludedwhy'], didjudgesealrecordYes=['$didjudgesealrecordYes'], didjudgesealrecordNo=['$didjudgesealrecordNo'], CourtappointeereportinfopresentedYes=['$CourtappointeereportinfopresentedYes'], AuthorMediator=['$AuthorMediator'], AuthorEvaluatorinvestigator=['$AuthorEvaluatorinvestigator'], AuthorCourtappointedtherapist=['$AuthorCourtappointedtherapist'], AuthorCoparentingcoordinator=['$AuthorCoparentingcoordinator'], DidapartyobjecttoreportinfoYes=['$DidapartyobjecttoreportinfoYes'], Didnotreceivereport10daysprior=['$Didnotreceivereport10daysprior'], Reportinfohearsay=['$Reportinfohearsay'], Reportinfonotauthenticated=['$Reportinfonotauthenticated'], JudgeruledonobjectionSustained=['$JudgeruledonobjectionSustained'], JudgeruledonobjectionOverruled=['$JudgeruledonobjectionOverruled'], WasobjectingpartyabletoexamineYes=['$WasobjectingpartyabletoexamineYes'], WasobjectingpartyabletoexamineNo=['$WasobjectingpartyabletoexamineNo'], WasahearingdatesetYes=['$WasahearingdatesetYes'], WasahearingdatesetNo=['$WasahearingdatesetNo'], DidapartyobjecttoreportinfoNo=['$DidapartyobjecttoreportinfoNo'], CourtappointeereportinfopresentedNo=['$CourtappointeereportinfopresentedNo'], DidAnyOneElseRepresentYes=['$DidAnyOneElseRepresentYes'], Whopresentedtheinfo=['$Whopresentedtheinfo'], WasahearsayobjectionmadeYes=['$WasahearsayobjectionmadeYes'], Bywhom=['$Bywhom'], DidcourthearconsideranywayYes=['$DidcourthearconsideranywayYes'], DidcourthearconsideranywayNo=['$DidcourthearconsideranywayNo'], WasahearsayobjectionmadeNo=['$WasahearsayobjectionmadeNo'], DidAnyOneElseRepresentNo=['$DidAnyOneElseRepresentNo'], PartydeniedrighttoevidencewitnessYes=['$PartydeniedrighttoevidencewitnessYes'], Petitioner11=['$Petitioner11'], Respondent11=['$Respondent11'], Reasonfordenial1=['$Reasonfordenial1'], FuturedatetopresentevidenceYes=['$FuturedatetopresentevidenceYes'], FuturedatetopresentevidenceNo=['$FuturedatetopresentevidenceNo'], PartydeniedrighttoevidencewitnessNo=['$PartydeniedrighttoevidencewitnessNo'], PartypreventedfromdiscoveryYes=['$PartypreventedfromdiscoveryYes'], Reason=['$Reason'], PartypreventedfromdiscoveryNo=['$PartypreventedfromdiscoveryNo'], PartiesgiveequalopportunitytospeakYes=['$PartiesgiveequalopportunitytospeakYes'], PartiesgiveequalopportunitytospeakNo=['$PartiesgiveequalopportunitytospeakNo'], Petitionergivenlessopportunity=['$Petitionergivenlessopportunity'], Respondentgivenlessopportunity=['$Respondentgivenlessopportunity'], PartydiscouragedfromspeakingpubliclyYes=['$PartydiscouragedfromspeakingpubliclyYes'], Whatwasjudgescomment=['$Whatwasjudgescomment'], PartydiscouragedfromspeakingpubliclyNo=['$PartydiscouragedfromspeakingpubliclyNo'], JUDICIALCONDUCTDEMEANOR=['$JUDICIALCONDUCTDEMEANOR'], WasaudienceaskedtoidentifyselfYes=['$WasaudienceaskedtoidentifyselfYes'], WasaudienceaskedtoidentifyselfNo=['$WasaudienceaskedtoidentifyselfNo'], WasanybodynotwitnessexcludedYes=['$WasanybodynotwitnessexcludedYes'], Whatreasongiven=['$Whatreasongiven'], WasanybodynotwitnessexcludedNo=['$WasanybodynotwitnessexcludedNo'], WasjudgecourteousrespectfulYes=['$WasjudgecourteousrespectfulYes'], WasjudgecourteousrespectfulNo=['$WasjudgecourteousrespectfulNo'], Towhomwasjudgedisrespectful=['$Towhomwasjudgedisrespectful'], DescribeDisrespect=['$DescribeDisrespect'], Howdiddisrespectedpersonreact1=['$Howdiddisrespectedpersonreact1'], DidanyoneelsespeakdisrespectfullyYes=['$DidanyoneelsespeakdisrespectfullyYes'], Whowasdisrespectful=['$Whowasdisrespectful'], Whowasdisrespected=['$Whowasdisrespected'], WhoWasDisrespectedDescribe=['$WhoWasDisrespectedDescribe'], Howdiddisrespectedpersonreact=['$Howdiddisrespectedpersonreact'], HowdidJudgeHandleSituationDisrespect=['$HowdidJudgeHandleSituationDisrespect'], DidanyoneelsespeakdisrespectfullyNo=['$DidanyoneelsespeakdisrespectfullyNo'], DidanyoneraisevioceactaggressiveYes=['$DidanyoneraisevioceactaggressiveYes'], Whowasaggressive=['$Whowasaggressive'], Whowasaggressedagainst=['$Whowasaggressedagainst'], WasWasAgressAgaintsDescribe=['$WasWasAgressAgaintsDescribe'], Howdidaggressedagainstpersonreact=['$Howdidaggressedagainstpersonreact'], HowdidjudgehandlesituationAggressed=['$HowdidjudgehandlesituationAggressed'], DidanyoneraisevoiceactaggressiveNo=['$DidanyoneraisevoiceactaggressiveNo'], DidapartycryYes=['$DidapartycryYes'], Whocried=['$Whocried'], Howdidjudgerespond=['$Howdidjudgerespond'], DidapartycryNo=['$DidapartycryNo'], DidjudgeappearirritatedangryatproseYes=['$DidjudgeappearirritatedangryatproseYes'], Howdidjudgebehavewhatwassaid=['$Howdidjudgebehavewhatwassaid'], DidjudgeappearirritatedangryatproseNo=['$DidjudgeappearirritatedangryatproseNo'], DidjudgeappearirritatedangryatproseNA=['$DidjudgeappearirritatedangryatproseNA'], DidapartyseemincapableYes=['$DidapartyseemincapableYes'], Describeconditionofparty=['$Describeconditionofparty'], Howdidjudgehandlesituation=['$Howdidjudgehandlesituation'], DidapartyseemincapableNo=['$DidapartyseemincapableNo'], IMPRESSIONS=['$IMPRESSIONS'], DiditseemtobeevenplayingfieldYes=['$DiditseemtobeevenplayingfieldYes'], DiditseemtobeevenplayingfieldNo=['$DiditseemtobeevenplayingfieldNo'], Whowasdisadvantaged=['$Whowasdisadvantaged'], DisadvantageWhy=['$DisadvantageWhy'], DidproseseemdisadvantagedbyattnyYes=['$DidproseseemdisadvantagedbyattnyYes'], DidproseseemdisadvantagedbyattnyNo=['$DidproseseemdisadvantagedbyattnyNo'], DidproseseemdisadvantagedbyattnyNA=['$DidproseseemdisadvantagedbyattnyNA'], WerebothheldtosamestandardYes=['$WerebothheldtosamestandardYes'], WerebothheldtosamestandardNo=['$WerebothheldtosamestandardNo'], Impressionwhynotheldtosamestandard=['$Impressionwhynotheldtosamestandard'], FamiliaritybetweenanyonebiasYes=['$FamiliaritybetweenanyonebiasYes'], FamilarityDescribe=['$FamilarityDescribe'], FamiliaritybetweenanyonebiasNo=['$FamiliaritybetweenanyonebiasNo'], FavoritismantagonismbyjudgeYes=['$FavoritismantagonismbyjudgeYes'], FavDescribe=['$FavDescribe'], FavoritismantagonismbyjudgeNo=['$FavoritismantagonismbyjudgeNo'], OtherRemarks=['$OtherRemarks'], ACCOMODATIONS=['$ACCOMODATIONS'], WasaninterpreterpresentYes=['$WasaninterpreterpresentYes'], InterpreterforPetitioner=['$InterpreterforPetitioner'], InterpreterforRespondent=['$InterpreterforRespondent'], WasaninterpreterpresentNo=['$WasaninterpreterpresentNo'], DideitherpartyaskforaccommodationYes=['$DideitherpartyaskforaccommodationYes'], RequestedbyPetitioner=['$RequestedbyPetitioner'], RequestedbyRespondent=['$RequestedbyRespondent'], Whataccommodationswererequested=['$Whataccommodationswererequested'], Whataccommodationswereprovided=['$Whataccommodationswereprovided'], DidthejudgerevealadiagnosisYes=['$DidthejudgerevealadiagnosisYes'], DidthejudgerevealadiagnosisNo=['$DidthejudgerevealadiagnosisNo'], DideitherpartyaskforaccommodationNo=['$DideitherpartyaskforaccommodationNo'], DideitherpartyaskforaccommodationUNK=['$DideitherpartyaskforaccommodationUNK'], DOMESTICVIOLENCECV=['$DOMESTICVIOLENCECV'], ProtectiveorderinplaceYes=['$ProtectiveorderinplaceYes'], Petitionerprotected=['$Petitionerprotected'], Respondentprotected=['$Respondentprotected'], Childrenprotected=['$Childrenprotected'], ProtectiveorderinplaceNo=['$ProtectiveorderinplaceNo'], ProtectiveorderinplaceUNK=['$ProtectiveorderinplaceUNK'], RestrainedpartywanttoterminateYes=['$RestrainedpartywanttoterminateYes'], WasprotectiveorderdismissedYes=['$WasprotectiveorderdismissedYes'], WasprotectiveorderdismissedNo=['$WasprotectiveorderdismissedNo'], RestrainedpartywanttoterminateNo=['$RestrainedpartywanttoterminateNo'], DidanyoneraiseDVallegationsYesDV=['$DidanyoneraiseDVallegationsYesDV'], DVPetitionerraisedallegations=['$DVPetitionerraisedallegations'], Respondentraisedallegations=['$Respondentraisedallegations'], Otherraisedallegations=['$Otherraisedallegations'], Physical1=['$Physical1'], Sexual1=['$Sexual1'], Verbalpsychological1=['$Verbalpsychological1'], Stalking1=['$Stalking1'], OtherHarassments=['$OtherHarassments'], DidallegeraskforrestrainingorderYes=['$DidallegeraskforrestrainingorderYes'], RestrainingOrderGrantedYes=['$RestrainingOrderGrantedYes'], JudgeexplainedconditionsYes=['$JudgeexplainedconditionsYes'], JudgeexplainedconditionsNo=['$JudgeexplainedconditionsNo'], JudgeorderweaponsturnedinYes=['$JudgeorderweaponsturnedinYes'], JudgeorderweaponsturnedinNo=['$JudgeorderweaponsturnedinNo'], Othersafetyorders=['$Othersafetyorders'], SafetyOrderWasRequestGrantedNo=['$SafetyOrderWasRequestGrantedNo'], SafetyOrderReasonfordenial=['$SafetyOrderReasonfordenial'], PartywithprotectiontohavecontactYes=['$PartywithprotectiontohavecontactYes'], Mediation=['$Mediation'], Coparentingclasses=['$Coparentingclasses'], Childexchanges=['$Childexchanges'], Whereexchangestotakeplace=['$Whereexchangestotakeplace'], ExchangeOther=['$ExchangeOther'], PartywithprotectiontohavecontactNo=['$PartywithprotectiontohavecontactNo'], WasprotectedpartyaccusedYes=['$WasprotectedpartyaccusedYes'], WasprotectedpartyaccusedNo=['$WasprotectedpartyaccusedNo'], WereallegationsminimizedYes=['$WereallegationsminimizedYes'], Whatgesturecomment=['$Whatgesturecomment'], WereallegationsminimizedNo=['$WereallegationsminimizedNo'], ProvisiontoleavesafelyYes=['$ProvisiontoleavesafelyYes'], ProvisiontoleavesafelyNo=['$ProvisiontoleavesafelyNo'], DidanyoneraiseDVallegationsNo=['$DidanyoneraiseDVallegationsNo'], CHILDABUSE=['$CHILDABUSE'], DidanyoneraiseallegationsofchildabuseYes=['$DidanyoneraiseallegationsofchildabuseYes'], Petitionerraisedallegations1=['$Petitionerraisedallegations1'], Respondentraisedallegations2=['$Respondentraisedallegations2'], Otherraisedallegations2=['$Otherraisedallegations2'], Physical5=['$Physical5'], Sexual5=['$Sexual5'], Verbalpsychological=['$Verbalpsychological'], Other5=['$Other5'], Age04=['$Age04'], Age510=['$Age510'], Age1114=['$Age1114'], Ageover14=['$Ageover14'], WasallegationalreadyreportedtoLEYes=['$WasallegationalreadyreportedtoLEYes'], WasallegationalreadyreportedtoLENo=['$WasallegationalreadyreportedtoLENo'], WasallegationalreadyreportedtoLEUNK=['$WasallegationalreadyreportedtoLEUNK'], WasinvestigativereportorderedYes=['$WasinvestigativereportorderedYes'], MDITlawenforcement=['$MDITlawenforcement'], ChildProtectiveServices=['$ChildProtectiveServices'], ProbationDept=['$ProbationDept'], FCevaluatorName=['$FCevaluatorName'], FCmediatorName=['$FCmediatorName'], FcOther=['$FcOther'], IfsexabuseallegedFC3118orderedYes=['$IfsexabuseallegedFC3118orderedYes'], Nameofevalinvestigator=['$Nameofevalinvestigator'], IfsexabuseallegedFC3118orderedNo=['$IfsexabuseallegedFC3118orderedNo'], WasinvestigativereportorderedNo=['$WasinvestigativereportorderedNo'], WaschildorderedtocontactwithabuserYes=['$WaschildorderedtocontactwithabuserYes'], Unsupervisedcontact=['$Unsupervisedcontact'], Contactsupervisedbyprofessional=['$Contactsupervisedbyprofessional'], Contactsupervisedbynonproneutral=['$Contactsupervisedbynonproneutral'], Contactsupervisedbyfamilyfriend=['$Contactsupervisedbyfamilyfriend'], Parentchildtherapy=['$Parentchildtherapy'], ParentChildOther=['$ParentChildOther'], WaschildorderedtocontactwithabuserNo=['$WaschildorderedtocontactwithabuserNo'], DidallegeraskforprotectionforchildYes=['$DidallegeraskforprotectionforchildYes'], WasrequestgrantedYes=['$WasrequestgrantedYes'], WasrequestgrantedNo=['$WasrequestgrantedNo'], PotectionReasonfordenial=['$PotectionReasonfordenial'], WasallegeraccusedYes=['$WasallegeraccusedYes'], Whoaccusedalleger=['$Whoaccusedalleger'], WasallegeraccusedNo=['$WasallegeraccusedNo'], DidjudgeminimizeYes=['$DidjudgeminimizeYes'], Describegesturescomments=['$Describegesturescomments'], DidjudgeminimizeNo=['$DidjudgeminimizeNo'], DidanyoneraiseallegationsofchildabuseNo=['$DidanyoneraiseallegationsofchildabuseNo'], CHILDSINPUT=['$CHILDSINPUT'], RequestchildappearYes=['$RequestchildappearYes'], Petitionerrequest=['$Petitionerrequest'], Respondentrequest=['$Respondentrequest'], Childsattorney2=['$Childsattorney2'], AttorneyOther=['$AttorneyOther'], Judgeagreed1=['$Judgeagreed1'], Judgedenied2=['$Judgedenied2'], Reasonfordenial2=['$Reasonfordenial2'], Judgereservedforfuturehearing=['$Judgereservedforfuturehearing'], Dateofhearing1=['$Dateofhearing1'], AttorneyforchildYes=['$AttorneyforchildYes'], Childsattorney=['$Childsattorney'], GuardianAdLitem=['$GuardianAdLitem'], BestInterestAttorney=['$BestInterestAttorney'], Wherephysicallyincourtroom=['$Wherephysicallyincourtroom'], AppeartobealignedprejudicedYes=['$AppeartobealignedprejudicedYes'], Howshowfavoritism=['$Howshowfavoritism'], AppeartobealignedprejudicedNo=['$AppeartobealignedprejudicedNo'], DidchildsattorneygivereportinputYes=['$DidchildsattorneygivereportinputYes'], WaschildpresenttotestifyYes=['$WaschildpresenttotestifyYes'], Under10testified=['$Under10testified'], Age1014testified=['$Age1014testified'], Over14testified=['$Over14testified'], Examinedonwitnessstand=['$Examinedonwitnessstand'], ObjectiontoopencourtquestionYes=['$ObjectiontoopencourtquestionYes'], Whoobjected=['$Whoobjected'], ObjectiontoopencourtquestionNo=['$ObjectiontoopencourtquestionNo'], WaschildplacedunderoathYes=['$WaschildplacedunderoathYes'], WaschildplacedunderoathNo=['$WaschildplacedunderoathNo'], Judgequestionedchild1=['$Judgequestionedchild1'], Childsattorneyquestionedchild1=['$Childsattorneyquestionedchild1'], Petitionersattorneyquestionedchild1=['$Petitionersattorneyquestionedchild1'], Petitionerquestionedchild1=['$Petitionerquestionedchild1'], Respondentsattorneyquestionedchild1=['$Respondentsattorneyquestionedchild1'], Respondentquestionedchild1=['$Respondentquestionedchild1'], PartydeniedabilitytoquestionYes=['$PartydeniedabilitytoquestionYes'], Petitionerdenied=['$Petitionerdenied'], Respondentdenied=['$Respondentdenied'], PartydeniedabilitytoquestionNo=['$PartydeniedabilitytoquestionNo'], Howdidchildreacttoexamination=['$Howdidchildreacttoexamination'], Questionedinchambers=['$Questionedinchambers'], DidapartyobjectYes=['$DidapartyobjectYes'], DidapartyobjectNo=['$DidapartyobjectNo'], Petitionerwenttochambers=['$Petitionerwenttochambers'], Petitionersattorneywenttochambers=['$Petitionersattorneywenttochambers'], Respondentwenttochambers=['$Respondentwenttochambers'], Respondentsattorneywenttochambers=['$Respondentsattorneywenttochambers'], Childsattorneywenttochambers=['$Childsattorneywenttochambers'], Courtreporterwenttochambers=['$Courtreporterwenttochambers'], CourtpreventaccesstorecordYes=['$CourtpreventaccesstorecordYes'], CourtpreventaccesstorecordNo=['$CourtpreventaccesstorecordNo'], Questionedbyremoteaccess=['$Questionedbyremoteaccess'], Atcourthousevideoseparatelocation=['$Atcourthousevideoseparatelocation'], AwayfromcourthousebySkype=['$AwayfromcourthousebySkype'], SkypeOther=['$SkypeOther'], ChildunderoathYes=['$ChildunderoathYes'], ChildunderoathNo=['$ChildunderoathNo'], Judgequestionedchild=['$Judgequestionedchild'], Childsattorneyquestionedchild=['$Childsattorneyquestionedchild'], Petitionerquestionedchild=['$Petitionerquestionedchild'], Petitionersattorneyquestionedchild=['$Petitionersattorneyquestionedchild'], Respondentquestionedchild=['$Respondentquestionedchild'], Respondentsattorneyquestionedchild=['$Respondentsattorneyquestionedchild'], Otherquestionedchild=['$Otherquestionedchild'], WasapartydeniedquestionchildYes=['$WasapartydeniedquestionchildYes'], Petitionerpreventedquestions=['$Petitionerpreventedquestions'], Respondentpreventedquestions=['$Respondentpreventedquestions'], WasapartydeniedquestionchildNo=['$WasapartydeniedquestionchildNo'], WaschildpresenttotestifyNo=['$WaschildpresenttotestifyNo'], RequestchildappearNo=['$RequestchildappearNo' WHERE id=['$id'") or die(mysql_error()); // once saved, redirect back to the view page header("Location: Cases.php"); } } else { // if the 'id' isn't valid, display an error echo 'Error!'; } } else // if the form hasn't been submitted, get the data from the db and display the form { // get the 'id' value from the URL (if it exists), making sure that it is valid (checing that it is numeric/larger than 0) if (isset($_GET['id']) && is_numeric($_GET['id']) && $_GET['id'] > 0) { // query db $id = $_GET['id']; $result = mysql_query("SELECT * FROM Sheet1 WHERE 'id'=$id") or die(mysql_error()); $row = mysql_fetch_array($result); // check that the 'id' matches up with a row in the databse if($row) { // get data from db $Volunteer=['Volunteer']; $CaseShortTitle=['CaseShortTitle']; $CaseNumber=['CaseNumber']; $HearingDate=['HearingDate']; $HearingTime=['HearingTime']; $Department=['Department']; $JudgeCommissioner=['JudgeCommissioner']; $JMale=['JMale']; $JFemale=['JFemale']; $PetitionersName=['PetitionersName']; $PMale=['PMale']; $PFemale=['PFemale']; $RespondentsName=['RespondentsName']; $Male=['Male']; $Female=['Female']; $ExParteHearing=['ExParteHearing']; $LawandMotionHearing=['LawandMotionHearing']; $Hearing=['Hearing']; $Trial=['Trial']; $SettlementConference=['SettlementConference']; $COURTROOMAPPEARANCES=['COURTROOMAPPEARANCES']; $PetitionerRepresented=['PetitionerRepresented']; $PetitionerProSe=['PetitionerProSe']; $RespondentRepresented=['RespondentRepresented']; $RespondentProSee=['RespondentProSee']; $AttorneyforChildrenName=['AttorneyforChildrenName']; $AMale=['AMale']; $AFemale=['AFemale']; $Other2=['Other2']; $NonAppearanceReason=['NonAppearanceReason']; $AppearedbyphoneYes=['AppearedbyphoneYes']; $AppearedbyPhoneNo=['AppearedbyPhoneNo']; $AppearedBySkypeYes=['AppearedBySkypeYes']; $AppearedbySkypeNo=['AppearedbySkypeNo']; $MinuteOrderProvidedatEndYes=['MinuteOrderProvidedatEndYes']; $MinuteOrderprovidedatendNo=['MinuteOrderprovidedatendNo']; $ISSUELITIGATION=['ISSUELITIGATION']; $Divorce=['Divorce']; $ChildCustody=['ChildCustody']; $ChildSupport=['ChildSupport']; $ChildVisitation=['ChildVisitation']; $RestrainingOrder=['RestrainingOrder']; $SpousalSupport=['SpousalSupport']; $Contempt=['Contempt']; $AttorneyFees=['AttorneyFees']; $OtherNotes1=['OtherNotes1']; $CaseContinuedToFutureDateYes=['CaseContinuedToFutureDateYes']; $DateContHearing=['DateContHearing']; $CaseContinuedToFutureDateNo=['CaseContinuedToFutureDateNo']; $stipulationsYes=['stipulationsYes']; $JudgeAskIfPartiesUnderstood=['JudgeAskIfPartiesUnderstood']; $JudgeAskIfPartiesUnderstoodNo=['JudgeAskIfPartiesUnderstoodNo']; $stipulationsNo=['stipulationsNo']; $CHILDCUSTODYVISITSUPPORTORDERS=['CHILDCUSTODYVISITSUPPORTORDERS']; $CustodyVisitOrdersInPlacePriorToHearing=['CustodyVisitOrdersInPlacePriorToHearing']; $JointPhysicalCustody=['JointPhysicalCustody']; $JointLegalCustody=['JointLegalCustody']; $LegalCustodyPetitioner=['LegalCustodyPetitioner']; $LegalCustodyRespondent=['LegalCustodyRespondent']; $PhysicalcustodyPetitioner=['PhysicalcustodyPetitioner']; $PhysicalCustodyRespondent=['PhysicalCustodyRespondent']; $UnsupervisedvisitationtoPetitioner=['UnsupervisedvisitationtoPetitioner']; $UnsupervisedvisitationtoRepondent=['UnsupervisedvisitationtoRepondent']; $SupervisedvisitationtoPetitioner=['SupervisedvisitationtoPetitioner']; $SupervisedvisitationtoRepondent=['SupervisedvisitationtoRepondent']; $RequesttochangecustodyYes=['RequesttochangecustodyYes']; $MadebyPetitioner=['MadebyPetitioner']; $MadebyRespondent=['MadebyRespondent']; $RequesttochangecustodyNo=['RequesttochangecustodyNo']; $RequesttochangevisitationYes=['RequesttochangevisitationYes']; $ChangeVisitationMadebyPetitioner=['ChangeVisitationMadebyPetitioner']; $ChangeVisitationMadebyRespondent=['ChangeVisitationMadebyRespondent']; $RequesttochangevisitationNo=['RequesttochangevisitationNo']; $Reasonforrequesttochangecustodyvisitation=['Reasonforrequesttochangecustodyvisitation']; $Domesticviolence=['Domesticviolence']; $Childabuseneglect=['Childabuseneglect']; $Relocation=['Relocation']; $Educationalissues=['Educationalissues']; $Childbehavioralissues=['Childbehavioralissues']; $Childswishes=['Childswishes']; $Developmentalstageofchild=['Developmentalstageofchild']; $DevelopmentOther=['DevelopmentOther']; $ChangesmadetocustodyorderYes=['ChangesmadetocustodyorderYes']; $SolelegaltoPetitioner=['SolelegaltoPetitioner']; $SolelegaltoRespondent=['SolelegaltoRespondent']; $JointlegaltoPetitioner=['JointlegaltoPetitioner']; $JointlegaltoRespondent=['JointlegaltoRespondent']; $SolephysicaltoPetitioner=['SolephysicaltoPetitioner']; $SolephysicaltoRespondent=['SolephysicaltoRespondent']; $JointphysicalprimarytoPetitioner=['JointphysicalprimarytoPetitioner']; $JointphysicalprimarytoRespondent=['JointphysicalprimarytoRespondent']; $ChangesmadetovisitationorderYes=['ChangesmadetovisitationorderYes']; $IncreasedforPetitioner=['IncreasedforPetitioner']; $IncreasedforRespondent=['IncreasedforRespondent']; $TerminatedforPetitioner=['TerminatedforPetitioner']; $TerminatedforRespondent=['TerminatedforRespondent']; $SupervisedforPetitioner=['SupervisedforPetitioner']; $SupervisedforRespondent=['SupervisedforRespondent']; $ChangestocustodyorvisitationNo=['ChangestocustodyorvisitationNo']; $PriororOrCurrentallegationsofDVCAYes=['PriororOrCurrentallegationsofDVCAYes']; $PriororOrCurrentallegationsofDVCAYesNo=['PriororOrCurrentallegationsofDVCAYesNo']; $PriororOrCurrentallegationsofDVCAYesUNK=['PriororOrCurrentallegationsofDVCAYesUNK']; $PartyrequestingincreasebehindsupportYes=['PartyrequestingincreasebehindsupportYes']; $PartyrequestingincreasebehindsupportNo=['PartyrequestingincreasebehindsupportNo']; $PartyrequestingincreasebehindsupportUNK=['PartyrequestingincreasebehindsupportUNK']; $WasapartyrequestingchangeinsupportYes=['WasapartyrequestingchangeinsupportYes']; $Primarycustodialparent=['Primarycustodialparent']; $Otherparent=['Otherparent']; $Supportincreased=['Supportincreased']; $Supportdecreased=['Supportdecreased']; $Nochangeinsupport=['Nochangeinsupport']; $WasapartyrequestingchangeinsupportNo=['WasapartyrequestingchangeinsupportNo']; $WasapartyrequestingchangeinsupportUNK=['WasapartyrequestingchangeinsupportUNK']; $DUEPROCESSCONSTITUTIONALRIGHTS=['DUEPROCESSCONSTITUTIONALRIGHTS']; $DidacourtreportermakearecordYes=['DidacourtreportermakearecordYes']; $DidacourtreportermakearecordNo=['DidacourtreportermakearecordNo']; $DidapartyminorattnyrequestobjectYes=['DidapartyminorattnyrequestobjectYes']; $DidhearingproceedanywayYes=['DidhearingproceedanywayYes']; $DidhearingproceedanywayNo=['DidhearingproceedanywayNo']; $DidapartyminorattnyrequestobjectNo=['DidapartyminorattnyrequestobjectNo']; $DidapartyasktoaudiovideotapeYes=['DidapartyasktoaudiovideotapeYes']; $VideoTapegrantedYes=['VideoTapegrantedYes']; $VideoTapegrantedNo=['VideoTapegrantedNo']; $DidapartyasktoaudiovideotapeNo=['DidapartyasktoaudiovideotapeNo']; $DidmeetingoccurinchambersYes=['DidmeetingoccurinchambersYes']; $Whowentintochambers=['Whowentintochambers']; $Petitionersattorney=['Petitionersattorney']; $Respondentsattorney=['Respondentsattorney']; $Childsattorney1=['Childsattorney1']; $Petitioner1=['Petitioner1']; $Respondent1=['Respondent1']; $Courtreporter=['Courtreporter']; $Ifpetitionerrespondentexcludedwhy=['Ifpetitionerrespondentexcludedwhy']; $didjudgesealrecordYes=['didjudgesealrecordYes']; $didjudgesealrecordNo=['didjudgesealrecordNo']; $CourtappointeereportinfopresentedYes=['CourtappointeereportinfopresentedYes']; $AuthorMediator=['AuthorMediator']; $AuthorEvaluatorinvestigator=['AuthorEvaluatorinvestigator']; $AuthorCourtappointedtherapist=['AuthorCourtappointedtherapist']; $AuthorCoparentingcoordinator=['AuthorCoparentingcoordinator']; $DidapartyobjecttoreportinfoYes=['DidapartyobjecttoreportinfoYes']; $Didnotreceivereport10daysprior=['Didnotreceivereport10daysprior']; $Reportinfohearsay=['Reportinfohearsay']; $Reportinfonotauthenticated=['Reportinfonotauthenticated']; $JudgeruledonobjectionSustained=['JudgeruledonobjectionSustained']; $JudgeruledonobjectionOverruled=['JudgeruledonobjectionOverruled']; $WasobjectingpartyabletoexamineYes=['WasobjectingpartyabletoexamineYes']; $WasobjectingpartyabletoexamineNo=['WasobjectingpartyabletoexamineNo']; $WasahearingdatesetYes=['WasahearingdatesetYes']; $WasahearingdatesetNo=['WasahearingdatesetNo']; $DidapartyobjecttoreportinfoNo=['DidapartyobjecttoreportinfoNo']; $CourtappointeereportinfopresentedNo=['CourtappointeereportinfopresentedNo']; $DidAnyOneElseRepresentYes=['DidAnyOneElseRepresentYes']; $Whopresentedtheinfo=['Whopresentedtheinfo']; $WasahearsayobjectionmadeYes=['WasahearsayobjectionmadeYes']; $Bywhom=['Bywhom']; $DidcourthearconsideranywayYes=['DidcourthearconsideranywayYes']; $DidcourthearconsideranywayNo=['DidcourthearconsideranywayNo']; $WasahearsayobjectionmadeNo=['WasahearsayobjectionmadeNo']; $DidAnyOneElseRepresentNo=['DidAnyOneElseRepresentNo']; $PartydeniedrighttoevidencewitnessYes=['PartydeniedrighttoevidencewitnessYes']; $Petitioner11=['Petitioner11']; $Respondent11=['Respondent11']; $Reasonfordenial1=['Reasonfordenial1']; $FuturedatetopresentevidenceYes=['FuturedatetopresentevidenceYes']; $FuturedatetopresentevidenceNo=['FuturedatetopresentevidenceNo']; $PartydeniedrighttoevidencewitnessNo=['PartydeniedrighttoevidencewitnessNo']; $PartypreventedfromdiscoveryYes=['PartypreventedfromdiscoveryYes']; $Reason=['Reason']; $PartypreventedfromdiscoveryNo=['PartypreventedfromdiscoveryNo']; $PartiesgiveequalopportunitytospeakYes=['PartiesgiveequalopportunitytospeakYes']; $PartiesgiveequalopportunitytospeakNo=['PartiesgiveequalopportunitytospeakNo']; $Petitionergivenlessopportunity=['Petitionergivenlessopportunity']; $Respondentgivenlessopportunity=['Respondentgivenlessopportunity']; $PartydiscouragedfromspeakingpubliclyYes=['PartydiscouragedfromspeakingpubliclyYes']; $Whatwasjudgescomment=['Whatwasjudgescomment']; $PartydiscouragedfromspeakingpubliclyNo=['PartydiscouragedfromspeakingpubliclyNo']; $JUDICIALCONDUCTDEMEANOR=['JUDICIALCONDUCTDEMEANOR']; $WasaudienceaskedtoidentifyselfYes=['WasaudienceaskedtoidentifyselfYes']; $WasaudienceaskedtoidentifyselfNo=['WasaudienceaskedtoidentifyselfNo']; $WasanybodynotwitnessexcludedYes=['WasanybodynotwitnessexcludedYes']; $Whatreasongiven=['Whatreasongiven']; $WasanybodynotwitnessexcludedNo=['WasanybodynotwitnessexcludedNo']; $WasjudgecourteousrespectfulYes=['WasjudgecourteousrespectfulYes']; $WasjudgecourteousrespectfulNo=['WasjudgecourteousrespectfulNo']; $Towhomwasjudgedisrespectful=['Towhomwasjudgedisrespectful']; $DescribeDisrespect=['DescribeDisrespect']; $Howdiddisrespectedpersonreact1=['Howdiddisrespectedpersonreact1']; $DidanyoneelsespeakdisrespectfullyYes=['DidanyoneelsespeakdisrespectfullyYes']; $Whowasdisrespectful=['Whowasdisrespectful']; $Whowasdisrespected=['Whowasdisrespected']; $WhoWasDisrespectedDescribe=['WhoWasDisrespectedDescribe']; $Howdiddisrespectedpersonreact=['Howdiddisrespectedpersonreact']; $HowdidJudgeHandleSituationDisrespect=['HowdidJudgeHandleSituationDisrespect']; $DidanyoneelsespeakdisrespectfullyNo=['DidanyoneelsespeakdisrespectfullyNo']; $DidanyoneraisevioceactaggressiveYes=['DidanyoneraisevioceactaggressiveYes']; $Whowasaggressive=['Whowasaggressive']; $Whowasaggressedagainst=['Whowasaggressedagainst']; $WasWasAgressAgaintsDescribe=['WasWasAgressAgaintsDescribe']; $Howdidaggressedagainstpersonreact=['Howdidaggressedagainstpersonreact']; $HowdidjudgehandlesituationAggressed=['HowdidjudgehandlesituationAggressed']; $DidanyoneraisevoiceactaggressiveNo=['DidanyoneraisevoiceactaggressiveNo']; $DidapartycryYes=['DidapartycryYes']; $Whocried=['Whocried']; $Howdidjudgerespond=['Howdidjudgerespond']; $DidapartycryNo=['DidapartycryNo']; $DidjudgeappearirritatedangryatproseYes=['DidjudgeappearirritatedangryatproseYes']; $Howdidjudgebehavewhatwassaid=['Howdidjudgebehavewhatwassaid']; $DidjudgeappearirritatedangryatproseNo=['DidjudgeappearirritatedangryatproseNo']; $DidjudgeappearirritatedangryatproseNA=['DidjudgeappearirritatedangryatproseNA']; $DidapartyseemincapableYes=['DidapartyseemincapableYes']; $Describeconditionofparty=['Describeconditionofparty']; $Howdidjudgehandlesituation=['Howdidjudgehandlesituation']; $DidapartyseemincapableNo=['DidapartyseemincapableNo']; $IMPRESSIONS=['IMPRESSIONS']; $DiditseemtobeevenplayingfieldYes=['DiditseemtobeevenplayingfieldYes']; $DiditseemtobeevenplayingfieldNo=['DiditseemtobeevenplayingfieldNo']; $Whowasdisadvantaged=['Whowasdisadvantaged']; $DisadvantageWhy=['DisadvantageWhy']; $DidproseseemdisadvantagedbyattnyYes=['DidproseseemdisadvantagedbyattnyYes']; $DidproseseemdisadvantagedbyattnyNo=['DidproseseemdisadvantagedbyattnyNo']; $DidproseseemdisadvantagedbyattnyNA=['DidproseseemdisadvantagedbyattnyNA']; $WerebothheldtosamestandardYes=['WerebothheldtosamestandardYes']; $WerebothheldtosamestandardNo=['WerebothheldtosamestandardNo']; $Impressionwhynotheldtosamestandard=['Impressionwhynotheldtosamestandard']; $FamiliaritybetweenanyonebiasYes=['FamiliaritybetweenanyonebiasYes']; $FamilarityDescribe=['FamilarityDescribe']; $FamiliaritybetweenanyonebiasNo=['FamiliaritybetweenanyonebiasNo']; $FavoritismantagonismbyjudgeYes=['FavoritismantagonismbyjudgeYes']; $FavDescribe=['FavDescribe']; $FavoritismantagonismbyjudgeNo=['FavoritismantagonismbyjudgeNo']; $OtherRemarks=['OtherRemarks']; $ACCOMODATIONS=['ACCOMODATIONS']; $WasaninterpreterpresentYes=['WasaninterpreterpresentYes']; $InterpreterforPetitioner=['InterpreterforPetitioner']; $InterpreterforRespondent=['InterpreterforRespondent']; $WasaninterpreterpresentNo=['WasaninterpreterpresentNo']; $DideitherpartyaskforaccommodationYes=['DideitherpartyaskforaccommodationYes']; $RequestedbyPetitioner=['RequestedbyPetitioner']; $RequestedbyRespondent=['RequestedbyRespondent']; $Whataccommodationswererequested=['Whataccommodationswererequested']; $Whataccommodationswereprovided=['Whataccommodationswereprovided']; $DidthejudgerevealadiagnosisYes=['DidthejudgerevealadiagnosisYes']; $DidthejudgerevealadiagnosisNo=['DidthejudgerevealadiagnosisNo']; $DideitherpartyaskforaccommodationNo=['DideitherpartyaskforaccommodationNo']; $DideitherpartyaskforaccommodationUNK=['DideitherpartyaskforaccommodationUNK']; $DOMESTICVIOLENCECV=['DOMESTICVIOLENCECV']; $ProtectiveorderinplaceYes=['ProtectiveorderinplaceYes']; $Petitionerprotected=['Petitionerprotected']; $Respondentprotected=['Respondentprotected']; $Childrenprotected=['Childrenprotected']; $ProtectiveorderinplaceNo=['ProtectiveorderinplaceNo']; $ProtectiveorderinplaceUNK=['ProtectiveorderinplaceUNK']; $RestrainedpartywanttoterminateYes=['RestrainedpartywanttoterminateYes']; $WasprotectiveorderdismissedYes=['WasprotectiveorderdismissedYes']; $WasprotectiveorderdismissedNo=['WasprotectiveorderdismissedNo']; $RestrainedpartywanttoterminateNo=['RestrainedpartywanttoterminateNo']; $DidanyoneraiseDVallegationsYesDV=['DidanyoneraiseDVallegationsYesDV']; $DVPetitionerraisedallegations=['DVPetitionerraisedallegations']; $Respondentraisedallegations=['Respondentraisedallegations']; $Otherraisedallegations=['Otherraisedallegations']; $Physical1=['Physical1']; $Sexual1=['Sexual1']; $Verbalpsychological1=['Verbalpsychological1']; $Stalking1=['Stalking1']; $OtherHarassments=['OtherHarassments']; $DidallegeraskforrestrainingorderYes=['DidallegeraskforrestrainingorderYes']; $RestrainingOrderGrantedYes=['RestrainingOrderGrantedYes']; $JudgeexplainedconditionsYes=['JudgeexplainedconditionsYes']; $JudgeexplainedconditionsNo=['JudgeexplainedconditionsNo']; $JudgeorderweaponsturnedinYes=['JudgeorderweaponsturnedinYes']; $JudgeorderweaponsturnedinNo=['JudgeorderweaponsturnedinNo']; $Othersafetyorders=['Othersafetyorders']; $SafetyOrderWasRequestGrantedNo=['SafetyOrderWasRequestGrantedNo']; $SafetyOrderReasonfordenial=['SafetyOrderReasonfordenial']; $PartywithprotectiontohavecontactYes=['PartywithprotectiontohavecontactYes']; $Mediation=['Mediation']; $Coparentingclasses=['Coparentingclasses']; $Childexchanges=['Childexchanges']; $Whereexchangestotakeplace=['Whereexchangestotakeplace']; $ExchangeOther=['ExchangeOther']; $PartywithprotectiontohavecontactNo=['PartywithprotectiontohavecontactNo']; $WasprotectedpartyaccusedYes=['WasprotectedpartyaccusedYes']; $WasprotectedpartyaccusedNo=['WasprotectedpartyaccusedNo']; $WereallegationsminimizedYes=['WereallegationsminimizedYes']; $Whatgesturecomment=['Whatgesturecomment']; $WereallegationsminimizedNo=['WereallegationsminimizedNo']; $ProvisiontoleavesafelyYes=['ProvisiontoleavesafelyYes']; $ProvisiontoleavesafelyNo=['ProvisiontoleavesafelyNo']; $DidanyoneraiseDVallegationsNo=['DidanyoneraiseDVallegationsNo']; $CHILDABUSE=['CHILDABUSE']; $DidanyoneraiseallegationsofchildabuseYes=['DidanyoneraiseallegationsofchildabuseYes']; $Petitionerraisedallegations1=['Petitionerraisedallegations1']; $Respondentraisedallegations2=['Respondentraisedallegations2']; $Otherraisedallegations2=['Otherraisedallegations2']; $Physical5=['Physical5']; $Sexual5=['Sexual5']; $Verbalpsychological=['Verbalpsychological']; $Other5=['Other5']; $Age04=['Age04']; $Age510=['Age510']; $Age1114=['Age1114']; $Ageover14=['Ageover14']; $WasallegationalreadyreportedtoLEYes=['WasallegationalreadyreportedtoLEYes']; $WasallegationalreadyreportedtoLENo=['WasallegationalreadyreportedtoLENo']; $WasallegationalreadyreportedtoLEUNK=['WasallegationalreadyreportedtoLEUNK']; $WasinvestigativereportorderedYes=['WasinvestigativereportorderedYes']; $MDITlawenforcement=['MDITlawenforcement']; $ChildProtectiveServices=['ChildProtectiveServices']; $ProbationDept=['ProbationDept']; $FCevaluatorName=['FCevaluatorName']; $FCmediatorName=['FCmediatorName']; $FcOther=['FcOther']; $IfsexabuseallegedFC3118orderedYes=['IfsexabuseallegedFC3118orderedYes']; $Nameofevalinvestigator=['Nameofevalinvestigator']; $IfsexabuseallegedFC3118orderedNo=['IfsexabuseallegedFC3118orderedNo']; $WasinvestigativereportorderedNo=['WasinvestigativereportorderedNo']; $WaschildorderedtocontactwithabuserYes=['WaschildorderedtocontactwithabuserYes']; $Unsupervisedcontact=['Unsupervisedcontact']; $Contactsupervisedbyprofessional=['Contactsupervisedbyprofessional']; $Contactsupervisedbynonproneutral=['Contactsupervisedbynonproneutral']; $Contactsupervisedbyfamilyfriend=['Contactsupervisedbyfamilyfriend']; $Parentchildtherapy=['Parentchildtherapy']; $ParentChildOther=['ParentChildOther']; $WaschildorderedtocontactwithabuserNo=['WaschildorderedtocontactwithabuserNo']; $DidallegeraskforprotectionforchildYes=['DidallegeraskforprotectionforchildYes']; $WasrequestgrantedYes=['WasrequestgrantedYes']; $WasrequestgrantedNo=['WasrequestgrantedNo']; $PotectionReasonfordenial=['PotectionReasonfordenial']; $WasallegeraccusedYes=['WasallegeraccusedYes']; $Whoaccusedalleger=['Whoaccusedalleger']; $WasallegeraccusedNo=['WasallegeraccusedNo']; $DidjudgeminimizeYes=['DidjudgeminimizeYes']; $Describegesturescomments=['Describegesturescomments']; $DidjudgeminimizeNo=['DidjudgeminimizeNo']; $DidanyoneraiseallegationsofchildabuseNo=['DidanyoneraiseallegationsofchildabuseNo']; $CHILDSINPUT=['CHILDSINPUT']; $RequestchildappearYes=['RequestchildappearYes']; $Petitionerrequest=['Petitionerrequest']; $Respondentrequest=['Respondentrequest']; $Childsattorney2=['Childsattorney2']; $AttorneyOther=['AttorneyOther']; $Judgeagreed1=['Judgeagreed1']; $Judgedenied2=['Judgedenied2']; $Reasonfordenial2=['Reasonfordenial2']; $Judgereservedforfuturehearing=['Judgereservedforfuturehearing']; $Dateofhearing1=['Dateofhearing1']; $AttorneyforchildYes=['AttorneyforchildYes']; $Childsattorney=['Childsattorney']; $GuardianAdLitem=['GuardianAdLitem']; $BestInterestAttorney=['BestInterestAttorney']; $Wherephysicallyincourtroom=['Wherephysicallyincourtroom']; $AppeartobealignedprejudicedYes=['AppeartobealignedprejudicedYes']; $Howshowfavoritism=['Howshowfavoritism']; $AppeartobealignedprejudicedNo=['AppeartobealignedprejudicedNo']; $DidchildsattorneygivereportinputYes=['DidchildsattorneygivereportinputYes']; $WaschildpresenttotestifyYes=['WaschildpresenttotestifyYes']; $Under10testified=['Under10testified']; $Age1014testified=['Age1014testified']; $Over14testified=['Over14testified']; $Examinedonwitnessstand=['Examinedonwitnessstand']; $ObjectiontoopencourtquestionYes=['ObjectiontoopencourtquestionYes']; $Whoobjected=['Whoobjected']; $ObjectiontoopencourtquestionNo=['ObjectiontoopencourtquestionNo']; $WaschildplacedunderoathYes=['WaschildplacedunderoathYes']; $WaschildplacedunderoathNo=['WaschildplacedunderoathNo']; $Judgequestionedchild1=['Judgequestionedchild1']; $Childsattorneyquestionedchild1=['Childsattorneyquestionedchild1']; $Petitionersattorneyquestionedchild1=['Petitionersattorneyquestionedchild1']; $Petitionerquestionedchild1=['Petitionerquestionedchild1']; $Respondentsattorneyquestionedchild1=['Respondentsattorneyquestionedchild1']; $Respondentquestionedchild1=['Respondentquestionedchild1']; $PartydeniedabilitytoquestionYes=['PartydeniedabilitytoquestionYes']; $Petitionerdenied=['Petitionerdenied']; $Respondentdenied=['Respondentdenied']; $PartydeniedabilitytoquestionNo=['PartydeniedabilitytoquestionNo']; $Howdidchildreacttoexamination=['Howdidchildreacttoexamination']; $Questionedinchambers=['Questionedinchambers']; $DidapartyobjectYes=['DidapartyobjectYes']; $DidapartyobjectNo=['DidapartyobjectNo']; $Petitionerwenttochambers=['Petitionerwenttochambers']; $Petitionersattorneywenttochambers=['Petitionersattorneywenttochambers']; $Respondentwenttochambers=['Respondentwenttochambers']; $Respondentsattorneywenttochambers=['Respondentsattorneywenttochambers']; $Childsattorneywenttochambers=['Childsattorneywenttochambers']; $Courtreporterwenttochambers=['Courtreporterwenttochambers']; $CourtpreventaccesstorecordYes=['CourtpreventaccesstorecordYes']; $CourtpreventaccesstorecordNo=['CourtpreventaccesstorecordNo']; $Questionedbyremoteaccess=['Questionedbyremoteaccess']; $Atcourthousevideoseparatelocation=['Atcourthousevideoseparatelocation']; $AwayfromcourthousebySkype=['AwayfromcourthousebySkype']; $SkypeOther=['SkypeOther']; $ChildunderoathYes=['ChildunderoathYes']; $ChildunderoathNo=['ChildunderoathNo']; $Judgequestionedchild=['Judgequestionedchild']; $Childsattorneyquestionedchild=['Childsattorneyquestionedchild']; $Petitionerquestionedchild=['Petitionerquestionedchild']; $Petitionersattorneyquestionedchild=['Petitionersattorneyquestionedchild']; $Respondentquestionedchild=['Respondentquestionedchild']; $Respondentsattorneyquestionedchild=['Respondentsattorneyquestionedchild']; $Otherquestionedchild=['Otherquestionedchild']; $WasapartydeniedquestionchildYes=['WasapartydeniedquestionchildYes']; $Petitionerpreventedquestions=['Petitionerpreventedquestions']; $Respondentpreventedquestions=['Respondentpreventedquestions']; $WasapartydeniedquestionchildNo=['WasapartydeniedquestionchildNo']; $WaschildpresenttotestifyNo=['WaschildpresenttotestifyNo']; $RequestchildappearNo=['RequestchildappearNo']; // show form renderForm($id, $Volunteer, $CaseShortTitle, $CaseNumber, $HearingDate, $HearingTime, $Department, $JudgeCommissioner, $JMale, $JFemale, $PetitionersName, $PMale, $PFemale, $RespondentsName, $Male, $Female, $ExParteHearing, $LawandMotionHearing, $Hearing, $Trial, $SettlementConference, $COURTROOMAPPEARANCES, $PetitionerRepresented, $PetitionerProSe, $RespondentRepresented, $RespondentProSee, $AttorneyforChildrenName, $AMale, $AFemale, $Other2, $NonAppearanceReason, $AppearedbyphoneYes, $AppearedbyPhoneNo, $AppearedBySkypeYes, $AppearedbySkypeNo, $MinuteOrderProvidedatEndYes, $MinuteOrderprovidedatendNo, $ISSUELITIGATION, $Divorce, $ChildCustody, $ChildSupport, $ChildVisitation, $RestrainingOrder, $SpousalSupport, $Contempt, $AttorneyFees, $OtherNotes1, $CaseContinuedToFutureDateYes, $DateContHearing, $CaseContinuedToFutureDateNo, $stipulationsYes, $JudgeAskIfPartiesUnderstood, $JudgeAskIfPartiesUnderstoodNo, $stipulationsNo, $CHILDCUSTODYVISITSUPPORTORDERS, $CustodyVisitOrdersInPlacePriorToHearing, $JointPhysicalCustody, $JointLegalCustody, $LegalCustodyPetitioner, $LegalCustodyRespondent, $PhysicalcustodyPetitioner, $PhysicalCustodyRespondent, $UnsupervisedvisitationtoPetitioner, $UnsupervisedvisitationtoRepondent, $SupervisedvisitationtoPetitioner, $SupervisedvisitationtoRepondent, $RequesttochangecustodyYes, $MadebyPetitioner, $MadebyRespondent, $RequesttochangecustodyNo, $RequesttochangevisitationYes, $ChangeVisitationMadebyPetitioner, $ChangeVisitationMadebyRespondent, $RequesttochangevisitationNo, $Reasonforrequesttochangecustodyvisitation, $Domesticviolence, $Childabuseneglect, $Relocation, $Educationalissues, $Childbehavioralissues, $Childswishes, $Developmentalstageofchild, $DevelopmentOther, $ChangesmadetocustodyorderYes, $SolelegaltoPetitioner, $SolelegaltoRespondent, $JointlegaltoPetitioner, $JointlegaltoRespondent, $SolephysicaltoPetitioner, $SolephysicaltoRespondent, $JointphysicalprimarytoPetitioner, $JointphysicalprimarytoRespondent, $ChangesmadetovisitationorderYes, $IncreasedforPetitioner, $IncreasedforRespondent, $TerminatedforPetitioner, $TerminatedforRespondent, $SupervisedforPetitioner, $SupervisedforRespondent, $ChangestocustodyorvisitationNo, $PriororOrCurrentallegationsofDVCAYes, $PriororOrCurrentallegationsofDVCAYesNo, $PriororOrCurrentallegationsofDVCAYesUNK, $PartyrequestingincreasebehindsupportYes, $PartyrequestingincreasebehindsupportNo, $PartyrequestingincreasebehindsupportUNK, $WasapartyrequestingchangeinsupportYes, $Primarycustodialparent, $Otherparent, $Supportincreased, $Supportdecreased, $Nochangeinsupport, $WasapartyrequestingchangeinsupportNo, $WasapartyrequestingchangeinsupportUNK, $DUEPROCESSCONSTITUTIONALRIGHTS, $DidacourtreportermakearecordYes, $DidacourtreportermakearecordNo, $DidapartyminorattnyrequestobjectYes, $DidhearingproceedanywayYes, $DidhearingproceedanywayNo, $DidapartyminorattnyrequestobjectNo, $DidapartyasktoaudiovideotapeYes, $VideoTapegrantedYes, $VideoTapegrantedNo, $DidapartyasktoaudiovideotapeNo, $DidmeetingoccurinchambersYes, $Whowentintochambers, $Petitionersattorney, $Respondentsattorney, $Childsattorney1, $Petitioner1, $Respondent1, $Courtreporter, $Ifpetitionerrespondentexcludedwhy, $didjudgesealrecordYes, $didjudgesealrecordNo, $CourtappointeereportinfopresentedYes, $AuthorMediator, $AuthorEvaluatorinvestigator, $AuthorCourtappointedtherapist, $AuthorCoparentingcoordinator, $DidapartyobjecttoreportinfoYes, $Didnotreceivereport10daysprior, $Reportinfohearsay, $Reportinfonotauthenticated, $JudgeruledonobjectionSustained, $JudgeruledonobjectionOverruled, $WasobjectingpartyabletoexamineYes, $WasobjectingpartyabletoexamineNo, $WasahearingdatesetYes, $WasahearingdatesetNo, $DidapartyobjecttoreportinfoNo, $CourtappointeereportinfopresentedNo, $DidAnyOneElseRepresentYes, $Whopresentedtheinfo, $WasahearsayobjectionmadeYes, $Bywhom, $DidcourthearconsideranywayYes, $DidcourthearconsideranywayNo, $WasahearsayobjectionmadeNo, $DidAnyOneElseRepresentNo, $PartydeniedrighttoevidencewitnessYes, $Petitioner11, $Respondent11, $Reasonfordenial1, $FuturedatetopresentevidenceYes, $FuturedatetopresentevidenceNo, $PartydeniedrighttoevidencewitnessNo, $PartypreventedfromdiscoveryYes, $Reason, $PartypreventedfromdiscoveryNo, $PartiesgiveequalopportunitytospeakYes, $PartiesgiveequalopportunitytospeakNo, $Petitionergivenlessopportunity, $Respondentgivenlessopportunity, $PartydiscouragedfromspeakingpubliclyYes, $Whatwasjudgescomment, $PartydiscouragedfromspeakingpubliclyNo, $JUDICIALCONDUCTDEMEANOR, $WasaudienceaskedtoidentifyselfYes, $WasaudienceaskedtoidentifyselfNo, $WasanybodynotwitnessexcludedYes, $Whatreasongiven, $WasanybodynotwitnessexcludedNo, $WasjudgecourteousrespectfulYes, $WasjudgecourteousrespectfulNo, $Towhomwasjudgedisrespectful, $DescribeDisrespect, $Howdiddisrespectedpersonreact1, $DidanyoneelsespeakdisrespectfullyYes, $Whowasdisrespectful, $Whowasdisrespected, $WhoWasDisrespectedDescribe, $Howdiddisrespectedpersonreact, $HowdidJudgeHandleSituationDisrespect, $DidanyoneelsespeakdisrespectfullyNo, $DidanyoneraisevioceactaggressiveYes, $Whowasaggressive, $Whowasaggressedagainst, $WasWasAgressAgaintsDescribe, $Howdidaggressedagainstpersonreact, $HowdidjudgehandlesituationAggressed, $DidanyoneraisevoiceactaggressiveNo, $DidapartycryYes, $Whocried, $Howdidjudgerespond, $DidapartycryNo, $DidjudgeappearirritatedangryatproseYes, $Howdidjudgebehavewhatwassaid, $DidjudgeappearirritatedangryatproseNo, $DidjudgeappearirritatedangryatproseNA, $DidapartyseemincapableYes, $Describeconditionofparty, $Howdidjudgehandlesituation, $DidapartyseemincapableNo, $IMPRESSIONS, $DiditseemtobeevenplayingfieldYes, $DiditseemtobeevenplayingfieldNo, $Whowasdisadvantaged, $DisadvantageWhy, $DidproseseemdisadvantagedbyattnyYes, $DidproseseemdisadvantagedbyattnyNo, $DidproseseemdisadvantagedbyattnyNA, $WerebothheldtosamestandardYes, $WerebothheldtosamestandardNo, $Impressionwhynotheldtosamestandard, $FamiliaritybetweenanyonebiasYes, $FamilarityDescribe, $FamiliaritybetweenanyonebiasNo, $FavoritismantagonismbyjudgeYes, $FavDescribe, $FavoritismantagonismbyjudgeNo, $OtherRemarks, $ACCOMODATIONS, $WasaninterpreterpresentYes, $InterpreterforPetitioner, $InterpreterforRespondent, $WasaninterpreterpresentNo, $DideitherpartyaskforaccommodationYes, $RequestedbyPetitioner, $RequestedbyRespondent, $Whataccommodationswererequested, $Whataccommodationswereprovided, $DidthejudgerevealadiagnosisYes, $DidthejudgerevealadiagnosisNo, $DideitherpartyaskforaccommodationNo, $DideitherpartyaskforaccommodationUNK, $DOMESTICVIOLENCECV, $ProtectiveorderinplaceYes, $Petitionerprotected, $Respondentprotected, $Childrenprotected, $ProtectiveorderinplaceNo, $ProtectiveorderinplaceUNK, $RestrainedpartywanttoterminateYes, $WasprotectiveorderdismissedYes, $WasprotectiveorderdismissedNo, $RestrainedpartywanttoterminateNo, $DidanyoneraiseDVallegationsYesDV, $DVPetitionerraisedallegations, $Respondentraisedallegations, $Otherraisedallegations, $Physical1, $Sexual1, $Verbalpsychological1, $Stalking1, $OtherHarassments, $DidallegeraskforrestrainingorderYes, $RestrainingOrderGrantedYes, $JudgeexplainedconditionsYes, $JudgeexplainedconditionsNo, $JudgeorderweaponsturnedinYes, $JudgeorderweaponsturnedinNo, $Othersafetyorders, $SafetyOrderWasRequestGrantedNo, $SafetyOrderReasonfordenial, $PartywithprotectiontohavecontactYes, $Mediation, $Coparentingclasses, $Childexchanges, $Whereexchangestotakeplace, $ExchangeOther, $PartywithprotectiontohavecontactNo, $WasprotectedpartyaccusedYes, $WasprotectedpartyaccusedNo, $WereallegationsminimizedYes, $Whatgesturecomment, $WereallegationsminimizedNo, $ProvisiontoleavesafelyYes, $ProvisiontoleavesafelyNo, $DidanyoneraiseDVallegationsNo, $CHILDABUSE, $DidanyoneraiseallegationsofchildabuseYes, $Petitionerraisedallegations1, $Respondentraisedallegations2, $Otherraisedallegations2, $Physical5, $Sexual5, $Verbalpsychological, $Other5, $Age04, $Age510, $Age1114, $Ageover14, $WasallegationalreadyreportedtoLEYes, $WasallegationalreadyreportedtoLENo, $WasallegationalreadyreportedtoLEUNK, $WasinvestigativereportorderedYes, $MDITlawenforcement, $ChildProtectiveServices, $ProbationDept, $FCevaluatorName, $FCmediatorName, $FcOther, $IfsexabuseallegedFC3118orderedYes, $Nameofevalinvestigator, $IfsexabuseallegedFC3118orderedNo, $WasinvestigativereportorderedNo, $WaschildorderedtocontactwithabuserYes, $Unsupervisedcontact, $Contactsupervisedbyprofessional, $Contactsupervisedbynonproneutral, $Contactsupervisedbyfamilyfriend, $Parentchildtherapy, $ParentChildOther, $WaschildorderedtocontactwithabuserNo, $DidallegeraskforprotectionforchildYes, $WasrequestgrantedYes, $WasrequestgrantedNo, $PotectionReasonfordenial, $WasallegeraccusedYes, $Whoaccusedalleger, $WasallegeraccusedNo, $DidjudgeminimizeYes, $Describegesturescomments, $DidjudgeminimizeNo, $DidanyoneraiseallegationsofchildabuseNo, $CHILDSINPUT, $RequestchildappearYes, $Petitionerrequest, $Respondentrequest, $Childsattorney2, $AttorneyOther, $Judgeagreed1, $Judgedenied2, $Reasonfordenial2, $Judgereservedforfuturehearing, $Dateofhearing1, $AttorneyforchildYes, $Childsattorney, $GuardianAdLitem, $BestInterestAttorney, $Wherephysicallyincourtroom, $AppeartobealignedprejudicedYes, $Howshowfavoritism, $AppeartobealignedprejudicedNo, $DidchildsattorneygivereportinputYes, $WaschildpresenttotestifyYes, $Under10testified, $Age1014testified, $Over14testified, $Examinedonwitnessstand, $ObjectiontoopencourtquestionYes, $Whoobjected, $ObjectiontoopencourtquestionNo, $WaschildplacedunderoathYes, $WaschildplacedunderoathNo, $Judgequestionedchild1, $Childsattorneyquestionedchild1, $Petitionersattorneyquestionedchild1, $Petitionerquestionedchild1, $Respondentsattorneyquestionedchild1, $Respondentquestionedchild1, $PartydeniedabilitytoquestionYes, $Petitionerdenied, $Respondentdenied, $PartydeniedabilitytoquestionNo, $Howdidchildreacttoexamination, $Questionedinchambers, $DidapartyobjectYes, $DidapartyobjectNo, $Petitionerwenttochambers, $Petitionersattorneywenttochambers, $Respondentwenttochambers, $Respondentsattorneywenttochambers, $Childsattorneywenttochambers, $Courtreporterwenttochambers, $CourtpreventaccesstorecordYes, $CourtpreventaccesstorecordNo, $Questionedbyremoteaccess, $Atcourthousevideoseparatelocation, $AwayfromcourthousebySkype, $SkypeOther, $ChildunderoathYes, $ChildunderoathNo, $Judgequestionedchild, $Childsattorneyquestionedchild, $Petitionerquestionedchild, $Petitionersattorneyquestionedchild, $Respondentquestionedchild, $Respondentsattorneyquestionedchild, $Otherquestionedchild, $WasapartydeniedquestionchildYes, $Petitionerpreventedquestions, $Respondentpreventedquestions, $WasapartydeniedquestionchildNo, $WaschildpresenttotestifyNo, $RequestchildappearNo, ''); } else // if no match, display result { echo "No results!"; } } else // if the 'id' in the URL isn't valid, or if there is no 'id' value, display an error { echo 'Error!'; } } ?> Problem is when i click on edit file in view-page.php it shows all the data as "Array" For example: ID: 1 Volunteer: Array ShortCaseTittle: Array and so one for all the fields. Thanks, Ben Quote Link to comment Share on other sites More sharing options...
Bennn Posted December 18, 2013 Report Share Posted December 18, 2013 and I was wondering if you could add a "Search" to this by any chance? Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.