Max,
After I updated to the latest version my data is no longer writing to the database. Everything has seemed to stop as of June 26th. The AutoGenerated is still pointing to the correct location
<?php
global $database;
$database->setQuery( "INSERT INTO #__chronoforms_1 VALUES (
'' , '". date('Y-m-d')." - ".date("H:i:s")."' , '".$_POST['Birth_Certificate_Number']."' , '".$_POST['firstname']."' , '".$_POST['mi']."' , '".$_POST['lastname']."' , '".$_POST['dob']."' , '".$_POST['address1']."' , '".$_POST['city']."' , '".$_POST['zip']."' , '".$_POST['school']."' , '".$_POST['Grade']."' , '".$_POST['lastplayed']."' , '".$_POST['email']."' , '".$_POST['sex']."' , '".$_POST['phone']."' , '".$_POST['coach']."' , '".$_POST['team']."' , '".$_POST['sameteam']."' , '".$_POST['newcoach']."' , '".$_POST['newteam']."' , '".$_POST['otherchildren']."' , '".$_POST['father']."' , '".$_POST['fatherocc']."' , '".$_POST['fatherph']."' , '".$_POST['mother']."' , '".$_POST['motherocc']."' , '".$_POST['motherph']."' , '".$_POST['support']."' , '".$_POST['emergency']."' , '".$_POST['emerph']."' , '".$_POST['emerph2']."' , '".$_POST['allergies']."' , '".$_POST['medical']."' , '".$_POST['physician']."' , '".$_POST['docph']."' , '".$_POST['insurance']."' , '".$_POST['insph']."' , '".$_POST['policyname']."' , '".$_POST['number']."' , '".$_POST['S1']."' , '".$_POST['emt']."' , '".$_POST['relationship2']."' , '".$_POST['date']."' , '".$_POST['S2']."' , '".$_POST['conduct']."' , '".$_POST['B1']."' , '".$_POST['B2']."');" );
if (!$database->query()) {
echo "<script> alert('".$database->getErrorMsg()."'); window.history.go(-1); </script>
";
}
?>