How to redirect to the current page with form in php?
Posted
by garcon1986
on Stack Overflow
See other posts from Stack Overflow
or by garcon1986
Published on 2010-01-28T14:24:46Z
Indexed on
2010/05/14
6:24 UTC
Read the original article
Hit count: 247
Hello,
I tried to redirect to the current page with form in my php application. Now i have met a problem.
<form name="myform" action="?page=matching" method="GET">
<input id="match_button" type="submit" name="button" value="button" onClick="func_load3()" />
</form>
action="?page=matching"
means the current page, because i use the single entry in my php application.
With the code upon, When i click the button, it redirects to the homepage.
And I tried to use:
<form name="myform" action="<?php echo $_SERVER['PHP_SELF']; ?>" method="GET">
but it still doesn't work.
So i have to ask for help from you. Do you have any ideas about that? How to fix it? Thanks in advance.
© Stack Overflow or respective owner