I have set a url like this in my signup
https://www.example.com/signup?ref_token=5c4d9bc6d3cb2
And my button should be like this :
if(isset($_POST['submit'])){
// Some code at here
}
Before the isset post I am still able to get the $_GET['ref_token']
data but right after the post, the get data lost.