Is there a way that I can possibly pass my variable from an offline page to my online page?
I have the following code on a page on Website A that contains the email of my receiver:
$emailOutput = $dataQuery_email->contact_email;
This is my code so far but it's not working.
file_get_contents("http://my_domain.com/sendEmail.php?email_id=".$emailOutput);
On my sendEmail.php I did this:
$to = $_GET[$emailOutput];
Is there any other way?