Petani Posted October 7, 2012 Share Posted October 7, 2012 hi friends, i have problem, i'm using foundation zurb form my project now. this's my first time use foundation zurb. n i use reveal feature to display a form. the form display, but when i click submit, nothing happen, how can be like that?? i just try a simple reveal just like below, <a href="#" data-reveal-id="form_up">form</a> <div id="form_up" class="reveal-modal"> <form action="go.php" method="POST"> <label>username</label> <input type="text" name="name" required> <input type="submit" value="save"> </form> </div> how to solve that friend? thanks before, friends Quote Link to comment https://forums.phpfreaks.com/topic/269189-create-form-in-reveal-foundation-zurb/ Share on other sites More sharing options...
Beeeeney Posted October 8, 2012 Share Posted October 8, 2012 hi friends, i have problem, i'm using foundation zurb form my project now. this's my first time use foundation zurb. n i use reveal feature to display a form. the form display, but when i click submit, nothing happen, how can be like that?? i just try a simple reveal just like below, <a href="#" data-reveal-id="form_up">form</a> <div id="form_up" class="reveal-modal"> <form action="go.php" method="POST"> <label>username</label> <input type="text" name="name" required> <input type="submit" value="save"> </form> </div> how to solve that friend? thanks before, friends Well all that submit button will do is send the form data to "go.php", if that's what you're asking? Do you have a page called "go.php"? All you then need to do is catch the form data with $_POST. If you don't, then of course it isn't going to do anything. Quote Link to comment https://forums.phpfreaks.com/topic/269189-create-form-in-reveal-foundation-zurb/#findComment-1383730 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.