problem is that while running the page.. the variables are not displayed in the output in page2.php. Please help asap.
this is my first page.........
<html>
<head>
<title>Personal INFO</title>
</head>
<body>
<form method="post" action="page2.php">
Please enter name of critical author:<br />
<input type="text" size="50" maxlength="50" name="Name"><br />
<br />
What is the most important point in critical author's’ arguement?<br />
<textarea rows="5" cols="50" name="Arg" wrap="physical"></textarea>:<br />
<br />
What is the phenomenon?<br/>
<textarea rows="5" cols="50" name="phe" wrap="physical"></textarea>:<br/>
<br />
Enter first author’s name:<br/>
<input type="text" size="50" maxlength="50" name="Fname"><br />
<br />
The work, theory or view of first author :<br />
<textarea rows="5" cols="50" name="fthe" wrap="physical"></textarea><br />
<br />
What is the justification for critical author’s views? :<br />
<textarea rows="5" cols="50" name="just" wrap="physical"></textarea><br />
<br />
Input critical author’s name again or introduce another critical author :<br />
<input type="text" size="50" maxlength="50" name="Sname"><br />
<br />
Quote critical author: <br />
<textarea rows="5" cols="50" name="quote" wrap="physical"></textarea><br />
<br />
Explain the quotation :<br />
<textarea rows="5" cols="50" name="exp" wrap="physical"></textarea><br /><br /><br />
<br />
<input type="submit" value="Step2" name="Step2">
</form>
</body>
</html>
This is the 2nd page(page2.php)
<?php
if (!isset($GET['Step2']))
{
Form not Submitted
}
else
{
$Name = $GET['Name'];
$Arg = $GET['Arg'];
$phe = $GET['phe'];
$Fname = $GET['Fname'];
$just = $GET['just'];
$Sname = $GET['Sname'];
$quote = $GET['quote'];
$exp = $_GET['exp'];
}
?>
<html>
<head>
<title>Personal INFO</title>
</head>
<body>
<form method="post" action="<page3.php">
Literature Paragraph : <br />
This
<select name="a">
<option value="View">View</option>
<option value="theory">theory</option>
<option value="framework">framework</option>
<option value="method">method</option>
<option value="conclusion">conclusion</option>
<option value="framework">framework</option>
</select>
is
<select name="b">
<option value="supported">supported</option>
<option value="critiqued">theory</option>
<option value="framework">criticized</option>
</select>
<?php echo $Name; ?>
who
<select name="c">
<option value="writes">writes</option>
<option value="states">states</option>
<option value="says">says</option>
</select>
<?php echo $Arg; ?>.<br />
<?php echo $Name; ?>
<select name="d">
<option value="discusses">discusses</option>
<option value="hashes out">hashes out</option>
<option value="argues">argues</option>
</select>
the
<select name="e">
<option value="challenges">challenges</option>
<option value="difficulties">difficulties</option>
</select>
and
<select name="f">
<option value="strategies">strategies</option>
<option value="techniques">techniques</option>
</select>
for facilitating and promoting
<?php echo $phe; ?>.<br />
<?php echo $Name; ?>
argues that
<select name="e">
<option value="his">his</option>
<option value="her">her</option>
</select>
<select name="f">
<option value="data">data</option>
<option value="observation">observation</option>
<option value="case studies">case studies</option>
</select>
support
<?php echo $Name; ?>
<select name="g">
<option value="View">View</option>
<option value="theory">theory</option>
<option value="framework">framework</option>
<option value="method">method</option>
<option value="conclusion">conclusion</option>
<option value="framework">framework</option>
</select>
that <?php echo $fthe; ?>.<br />
As
<?php echo $Name; ?>
reminds us,
<?php echo $Sname; ?>
elsewhere, has argued that
<?php echo $just; ?>.
At the end of
<select name="h">
<option value="his">his</option>
<option value="her">her</option>
</select>
thesis,
<?php echo $Name; ?>
states:
<?php echo $quote; ?>.
The essence of ".
<?php echo $Name; ?>'s
argument is <?php echo $exp; ?>.
<br /><br />
<input type="submit" value="Print" name="Print">
</form>
</body>
</html>