if($_REQUEST){
echo "Here is your original fingerprint: ". $_REQUEST['originalFingerprint'] . "
";
$fixedpositions = preg_split("/\[/", $_REQUEST['originalFingerprint'] );
var_dump($fixedpositions);
$fixedpositionsb = preg_split("/\]/", $fixedpositions[1]);
var_dump($fixedpositionsb);
$firstcount = preg_split("//", $fixedpositionsb[0]);
$file = 'fingerprintssubmitted.txt';
// Open the file to get existing content
$current = file_get_contents($file);
// Append a new person to the file
$current .= $_REQUEST['originalFingerprint'] ."\n";
// Write the contents back to the file
file_put_contents($file, $current);
?>
Position 1:
// ?>
//indel from X(8.10) means minimum 8 , max 10
//var_dump($_REQUEST);
}
?>