session_start(); $_SESSION['name'] = $_POST['name']; $_SESSION['verb'] = $_POST['verb']; $_SESSION['verb2'] = $_POST['verb2']; $_SESSION['adj'] = $_POST['adj']; $_SESSION['gross'] = $_POST['gross']; $_SESSION['show'] = $_POST['show']; ?>
$sentence = $_POST['sentence']; $name = $_SESSION['name']; $verb = $_SESSION['verb']; $verb2 = $_SESSION['verb2']; $adj = $_SESSION['adj']; $gross = $_SESSION['gross']; $show = $_SESSION['show']; if ($sentence == "Sentence 1") { $datastring = "\n$name $verb2 $show while $verb the $adj $gross."; echo $datastring; } else if ($sentence == "Sentence 2") { $datastring = "\n$name $verb2 the $adj $gross while $verb $show."; echo $datastring; } else if ($sentence == "Sentence 3") { $datastring = "\n$name $verb2 on $show $verb the $adj $food."; echo $datastring; } $filename = "sentencedata.txt"; $myfile = fopen($filename, "a"); fwrite($myfile, $datastring); fclose($myfile); ?>