Thank you, but... I don´t understand very well how to get the data form the
form, and send them to _insert.php with jquery post
Could you please write an example?
I´ve got this:
<div class="span2">
<div>How to arrive *</div>
<div data-toggle="buttons-radio"
class="btn-group" class="required" title="How con tuy arrive there? Do you
need a car?">
<button class="btn" type="button"
name="acceso" value="By car">By car</button>
<button class="btn" type="button"
name="acceso" value="By foot">By foot</button>
<button class="btn" type="button"
name="acceso" value="Car/Foot">Both</button>
</div>
</div>
<div class="span2">
<div>Intimidity *</div>
<div data-toggle="buttons-radio"
class="btn-group" class="required" title="Esta muy escondido y te permite
tener gran intimidad?">
<button class="btn" type="button"
name="intimidad" value="High">High</button>
<button class="btn" type="button"
name="intimidad" value="Medium">Medium</button>
<button class="btn" type="button"
name="intimidad" value="Low">Low</button>
</div>
</div>
Thankyou very much anyway.
Josean
2013/2/7 Renoir Boulanger <[email protected]>
> This is not a Bootstrap issue.
>
> Each input elements has to be with at least a name attribute.
>
> Name should be unique except for radio buttons.
>
> If you use PHP to recieve the $_POST, if you give names like the
> following, you can grab them easily as an array:
>
> myform[user][age]
> myform[user][first_name]
> myform[user][last_name]
>
> Is like you would had written
>
> <?php
> $post = array('user'=>array('age'=> 22, 'first_name' =>'John', 'last_name'
> => 'Schmoe'));
>
> var_dump($post);
>
>
>
> You can look at the WebPlatform documentation vault about form basics here:
>
> http://docs.webplatform.org/wiki/guides/html_forms_basics
>
> Beware of your documentation source. W3schools is known to outline
> erroneous information: http://w3fools.com/
>
> About documentation, the W3C specs are heavy but the real deal. Other good
> sources are; Mozilla's MDN, Microsoft MSDN, The web platform project.
>
> --
> You received this message because you are subscribed to the Google Groups
> "twitter-bootstrap" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to [email protected].
> For more options, visit https://groups.google.com/groups/opt_out.
>
>
>
--
You received this message because you are subscribed to the Google Groups
"twitter-bootstrap" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.