Davetheguy Posted January 1, 2019 Share Posted January 1, 2019 I get this error: Oops! Please ensure you have completed all fields before submitting the form. Also ensure that there is only one email address. All are filled out properly on the web page? Can someone please help? This is the page: http://www.blizzarddynamics.com/feedback_form.html Quote Link to comment Share on other sites More sharing options...
benanamen Posted January 1, 2019 Share Posted January 1, 2019 The form submitted for me. Quote Link to comment Share on other sites More sharing options...
Davetheguy Posted January 1, 2019 Author Share Posted January 1, 2019 WOW! Thanks, not sure what was going on for me? Thank You!!! Dave Quote Link to comment Share on other sites More sharing options...
Davetheguy Posted January 1, 2019 Author Share Posted January 1, 2019 Hmmm? I see the it worked for you! I got the feedback as well, but it still will not let me complete it and still gives me that error? Any thoughts on why? I'm stumped? Dave Quote Link to comment Share on other sites More sharing options...
ginerjm Posted January 1, 2019 Share Posted January 1, 2019 Shouldn't we be seeing the code rather than doing testing? Why don't you add some debugging echos to the code to test out what is happening? Quote Link to comment Share on other sites More sharing options...
Davetheguy Posted January 1, 2019 Author Share Posted January 1, 2019 This is the php. I am new at this so please bear w me.. I do not know hos to add debugging echo's... $email_address = $_REQUEST['email_address'] ; $comments = $_REQUEST['comments'] ; $first_name = $_REQUEST['first_name'] ; $from = $_REQUEST['from'] ; $picture = $_REQUEST['picture'] ; $post = $_REQUEST['post'] ; $msg = "First Name: " . $first_name . "\r\n" . "From?: " . $from . "\r\n" . "Picture?: " . $picture . "\r\n" . "Post?: " . $post . "\r\n" . "Email: " . $email_address . "\r\n" . "Comments: " . $comments ; Quote Link to comment Share on other sites More sharing options...
Barand Posted January 1, 2019 Share Posted January 1, 2019 This is a strange problem. There is no code outputting the message you are seeing. Quote Link to comment Share on other sites More sharing options...
ginerjm Posted January 2, 2019 Share Posted January 2, 2019 You don't know how to write an echo statement? Basic PHP code. Really. Perhaps you should start with a guide and practice the hello world exercise. PS - when using a form for input one should grab the data from either the GET array or the POST array and NOT from the REQUEST one. Quote Link to comment 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.