How to redirect to the current page with form in php?
- by garcon1986
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.