I have a submit button and i want to view next page after clicking that button
php submit button
Collapse
X
-
-
Ajithkumar.
First of all, welcome to Bytes!
Eager as we are to help you solve your coding problems, in order to do so, you will need to provide an actual question.
And know that we do not like guessing, so you will also have to provide the details we will need to help you.
What those details are, and how this information should be presented is explained in the Posting Guidelines, which we require all members to read and abide by when posting in these forums.
Please keep that in mind in the future.
Thank you
ModeratorComment
-
Originally posted by vinay2110write a php code for it which can be
[PHP]<?
if($_post['submit'])
{
header("locatio n: nextpage.php");// give the name of the page you want in place of nextpage
}
?>[/PHP]Comment
Comment