deansaddigh Posted February 25, 2010 Share Posted February 25, 2010 Im passing email and id through a query string echo'<form id="two" action="send_mail.php?id='.$id.' email='.$row['email'].'" method="post">'; Picking it up here $enquiry_id = $_GET['id']; $email = $_GET['email']; Im getting an error on the email any ideas? Quote Link to comment https://forums.phpfreaks.com/topic/193408-undifined-varible/ Share on other sites More sharing options...
harristweed Posted February 25, 2010 Share Posted February 25, 2010 send_mail.php?id='.$id.' email='.$row['email']. perhaps should be: send_mail.php?id='.$id.'&email='.$row['email']. Quote Link to comment https://forums.phpfreaks.com/topic/193408-undifined-varible/#findComment-1018271 Share on other sites More sharing options...
deansaddigh Posted February 25, 2010 Author Share Posted February 25, 2010 Thanks alot man, that fixed it Quote Link to comment https://forums.phpfreaks.com/topic/193408-undifined-varible/#findComment-1018273 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.