if I pass a variable from one php file to another through the URL the second echo doesn't print but the first one prints no problem:
$from = $_GET['userPassed'];
echo $from;
if($_POST['Submit'] == 'Send')
{
echo $from;
}
It must lose the data when I click submit. Here is my form tag:
<form action="email.php" method="post">
Do i need to pass the variable in there or something else to get the $from data inside the if statement? Thanks!
L