Hello I am trying to use $_GET to pass a variable over to the contact.php page mentioned, but the outcome is:
/contact.php?firstname=
this is the link that im clicking to send the variable:
echo '<a href="contact.php?name="' . $email . '">';
This is the code to get the variable on the other side:
<?php
$name = $_GET['name'];
echo $name ;
?>