session_start(); $_SESSION['name'] = $_POST['name']; $_SESSION['verb1'] = $_POST['verb1']; $_SESSION['verb2'] = $_POST['verb2']; $_SESSION['noun1'] = $_POST['noun1']; $_SESSION['noun2'] = $_POST['noun2']; $_SESSION['adverb1'] = $_POST['adverb1']; ?>
$sentence = $_POST['sentence']; $name = $_SESSION['name']; $verb1 = $_SESSION['verb1']; $verb2 = $_SESSION['verb2']; $noun1 = $_SESSION['noun1']; $noun2 = $_SESSION['noun2']; $adverb1 = $_SESSION['adverb1']; if ($sentence == "Sentence 1") { $sentences = "$name watches Judge Judy $adverb1 after they forgot their $noun1 at the $noun2 and $verb2 to get them. "; echo $sentences; } else if ($sentence == "Sentence 2") { $sentences = "After $verb1 up a $noun1, $name $verb2 to the $noun2 extremely $adverb1. "; echo $sentences; } else if ($sentence == "Sentence 3") { $sentences = "$name is $verb1 to the $noun1 because they $verb2 the finest cheese $adverb1. "; echo $sentences; } $filename = "sentencedata.txt"; $myfile = fopen($filename, "a"); fwrite($myfile, $sentences); fclose($myfile); ?>