variables are not being displayed.

Need help debugging it. Variables are not being passed and the else loop is running even for the first time.

[php]

Personal INFO

Please enter name of critical author:





What is the most important point in critical author’s’ arguement?

:



What is the phenomenon?

:



Enter first author’s name:





The work, theory or view of first author :





What is the justification for critical author’s views? :





Input critical author’s name again or introduce another critical author :





Quote critical author:





Explain the quotation :






<?php if (!($_POST["Step2"])) { echo "Form not submitted"; } else { $Name = $_POST["Name"]; $Arg = $_POST["Arg"]; $phe = $_POST["phe"]; $Fname = $_POST["Fname"]; $just = $_POST["just"]; $Sname = $_POST["Sname"]; $quote = $_POST["quote"]; $exp = $_POST["exp"]; ?> Personal INFO






Literature Paragraph :


This

View theory framework method conclusion framework

is

supported theory criticized <?php echo $Name; ?>X

who

writes states says <?php echo $Arg; ?>X. <?php echo $Name; ?>X discusses hashes out argues

the

challenges difficulties

and

strategies techniques

for facilitating and promoting

<?php echo $phe; ?>X. <?php echo $Name; ?>X

argues that

his her data observation case studies

support

<?php echo $Name; ?>X View theory framework method conclusion framework

that <?php echo $fthe; ?>X.

As

<?php echo $Name; ?>X

reminds us,

<?php echo $Sname; ?>X

elsewhere, has argued that

<?php echo $just; ?>X.

At the end of

his her

thesis,

<?php echo $Name; ?>X

states:

<?php echo $quote; ?>XYZ.

The essence of ".

<?php echo $Name; ?>X's

argument is

<?php echo $exp; ?>ABCD. [/php]

change it around to
[php]

<?php if(isset($_POST["Step2"])) { $Name = $_POST["Name"]; $Arg = $_POST["Arg"]; $phe = $_POST["phe"]; $Fname = $_POST["Fname"]; $just = $_POST["just"]; $Sname = $_POST["Sname"]; $quote = $_POST["quote"]; $exp = $_POST["exp"]; ?> Personal INFO






Literature Paragraph :


This

View theory framework method conclusion framework

is

supported theory criticized <?php echo $Name; ?>X

who

writes states says <?php echo $Arg; ?>X. <?php echo $Name; ?>X discusses hashes out argues

the

challenges difficulties

and

strategies techniques

for facilitating and promoting

<?php echo $phe; ?>X. <?php echo $Name; ?>X

argues that

his her data observation case studies

support

<?php echo $Name; ?>X View theory framework method conclusion framework

that <?php echo $fthe; ?>X.

As

<?php echo $Name; ?>X

reminds us,

<?php echo $Sname; ?>X

elsewhere, has argued that

<?php echo $just; ?>X.

At the end of

his her

thesis,

<?php echo $Name; ?>X

states:

<?php echo $quote; ?>XYZ.

The essence of ".

<?php echo $Name; ?>X's

argument is

<?php echo $exp; ?>ABCD. <?php } else { echo "Form not submitted"; }

Personal INFO

Please enter name of critical author:





What is the most important point in critical author’s’ arguement?

:



What is the phenomenon?

:



Enter first author’s name:





The work, theory or view of first author :





What is the justification for critical author’s views? :





Input critical author’s name again or introduce another critical author :





Quote critical author:





Explain the quotation :






[/php]

Your php code needs to be on top of the page for it to display properly.

Sponsor our Newsletter | Privacy Policy | Terms of Service