jnerotrix Posted December 10, 2008 Share Posted December 10, 2008 Try this then replace this $Name = "name"; //senders name $email = "[email protected]"; //senders e-mail adress $recipient = $_REQUEST['email']; //recipient $reply = "Congratulations! Video access for " .$_POST['fname']." ".$_POST['lname'].""; with this $fname = $_POST['fname']; $lname = $_POST['lname']; $Name = "name"; //senders name $email = "[email protected]"; //senders e-mail adress $recipient = $_REQUEST['email']; //recipient $reply = "Congratulations! Video access for $fname $lname "; Link to comment https://forums.phpfreaks.com/topic/136285-reply-not-working-need-help/page/2/#findComment-711044 Share on other sites More sharing options...
codieB Posted December 10, 2008 Author Share Posted December 10, 2008 No errors, but no luck either. I'm getting the same results I got when I started. Everything comes in just find except the greeting. Link to comment https://forums.phpfreaks.com/topic/136285-reply-not-working-need-help/page/2/#findComment-711045 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.