I am trying to pass an action parameter and a variable parameter in the same header function.
Here is the code that I have written so far:
header('Location: .?action=show_edit_form, word=$word');
When I use the action parameter alone, it goes to the next page, but when I try to pass a variable along with the action parameter, it does not work.
Please advise.