Hi, Ive already started a thread similar to this but for a different form format. this one is as follows...
Im struggling with the correct code to do the following... probably something simple to many but im new to PHP and learning as I go.
I have a simple php form with the line of code:
$your_email ='yourname@your-website.com';
I want to use a variable as the email address, which currently works as:
<?php echo $_GET['ID']; ?>
How can I combine the two so that the email would use the 'ID' as the email address? Ive tried various ways but dont seem successful.
$your_email ='<" .$_GET['ID']. ">';
Thanks in advance.