"Bootstrap Accordian Easy Build"
Bootstrap 3.2.0 Snippet by jerryschrader

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<link href="//netdna.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//netdna.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
<script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<div class="container"><h1>Accordian Builder</h1>
<?php
$items = $_POST['item'];
if(empty($items)): ?>
<div class="wrapper">
<form action="" method="post">
<?php for($i = 1; $i <= 10; $i++){ ?>
<p>TITLE: <input type="text" name="item[<?php echo $i; ?>][title]"></p>
<p>TEXT: <textarea name="item[<?php echo $i; ?>][text]" cols="30" rows="10"></textarea></p>
<hr />
<?php }?>
<p><input type="submit" name="submit"></p>
</form>
</div><!-- /wrapper -->
<?php endif; ?>
<div class="wrapper">
<?php
if(!empty($items)):
ob_start();?><div class="panel-group" id="accordion"><?php
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
.wrapper {
margin:20px auto;
width:900px;
background:#ddd;
color:#333;
border:#999;
text-align:center;
}
.wrapper input {
width:50%;
height:30px;
}
.wrapper textarea {
width:50%;
height:150px;
}
p:first-of-type {
padding-top:50px;
}
input[name=submit] {
margin-bottom:50px;
height:50px;
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: