rashidpathiyil Posted October 11, 2015 Share Posted October 11, 2015 How to create action page to fill # action="#" HTML Form code 1: <form action="#" class="contactForm" method="post"> <input class="required" type="text" name="name" placeholder="Name"> <input class="required" type="email" name="email" placeholder="Email"> <textarea class="required" name="textArea" placeholder="Message"></textarea> <input id="conSubmit" type="submit" name="submit" value="Submit"> </form> HTML Form Code 2: <form id="subscribeForm" action="#" method="post" class="subscribeForm pull-left"> <input id="subEmail" type="email" name="email" placeholder="Enter your e-mail"> <input id="subSubmit" type="submit" name="submit" value="Subscribe"> <div class="clearfix"></div> </form> Link to comment https://forums.phpfreaks.com/topic/298541-how-to-create-a-form_action-page-for-html-form/ Share on other sites More sharing options...
benanamen Posted October 11, 2015 Share Posted October 11, 2015 Duplicate Post of http://forums.phpfreaks.com/topic/298539-how-to-create-a-actionphp-page-for-html-form/ DO NOT POST THE SAME THING MORE THAN ONCE. Link to comment https://forums.phpfreaks.com/topic/298541-how-to-create-a-form_action-page-for-html-form/#findComment-1522972 Share on other sites More sharing options...
Recommended Posts