Lets say that you're trying to send information like email to the .php-file. <input name="email" type="text" id="email">
I suppose you're using method="POST" in the form.
In the .php file define this first:
$email = $_POST['email'];
if you're using method="GET" then do this:
$email =...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.