Jump to content

Create Form In Reveal Foundation Zurb


Petani

Recommended Posts

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

Link to comment
https://forums.phpfreaks.com/topic/269189-create-form-in-reveal-foundation-zurb/
Share on other sites

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.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.