i new to php i have problem when i develop internet survey where there a lot of question in one form.i test answer all the question and when i try to submit it nothing happen it means there no action but when i did not answer all question the submit button working fine.
any ideas
It is probably best if you post your script here.
From what it seem, it looks like you did not add in the form thus unable to send the data over to the page that you want. It's just a guess but it can be caused but other things as well.
make sure you use either
<input type="submit" value="[Button text]/>
or
<button type="submit">[Button text]</button>
and that the button is inside the <form> tag, otherwise it won't do anything
here is the code
<form name="form1" action="InsertSurveyForm.php" method="get">
<!--my internet survey question goes here-->
<input type="submit" />
</form>
anything I'm doing wrong or maybe it's got limit which i don't think so.