Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a page named abc.php

<?php include("CommonToSignedPage.php")?>
<div class="backgroundbox">
<div id="content">
<div id="menu">
      <?php include("menu.php");?>
</div> 
<div id="contentBody">


<form action"xyz.php" method="post">

     First Name<input class="reviewTextBoxes" type="text" name="firstName" />

     Last  Name<input class="reviewTextBoxes" type="text" name="lastName" />

               <input type="submit" class="buttonn" value="submit"/>

</form>

</div> <!--end of contentBody-->   
</div><!--end of  content-->
</div><!--end of backgroundbox-->

now after submitting this form ,the page doesnot get forwarded to xyz.php instead the same page(abc.php) keeps being displayed.I have tried putting many different page's name in the form's action field but none of them have worked.I have never encountered such a problem before

share|improve this question

1 Answer

You are not using attributes correctly. You forgot the =...

<form action="xyz.php">
<!--        ^       -->

The default action attribute when empty is itself. That's why your page is submitting to itself.

share|improve this answer
haha thanks.How lame of me! – user1720616 Feb 4 at 2:47

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.