- Автор темы
- #1
Есть база
и есть скрипт галереи
как вывести рисунки в галерею из базы ?
Код:
CREATE TABLE IF NOT EXISTS `images` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`item_id` int(220) NOT NULL,
`image_name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`uploaded` datetime NOT NULL,
`image_code` int(225) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=89 ;
и есть скрипт галереи
Код:
<section>
<div id="mygallery" class="gallery">
<div class="images">
<div class="active" style="background-image: url(img/01.jpg)"></div>
<div style="background-image: url(img/02.jpg)"></div>
<div style="background-image: url(img/03.jpg)"></div>
<div style="background-image: url(img/04.jpg)"></div>
<div style="background-image: url(img/02.jpg)"></div>
<div style="background-image: url(img/03.jpg)"></div>
<div style="background-image: url(img/04.jpg)"></div>
<span class="left"></span>
<span class="right"></span>
</div>
<div class="thumbs">
<div class="active" style="background-image: url(img/01.jpg)"></div>
<div style="background-image: url(img/02.jpg)"></div>
<div style="background-image: url(img/03.jpg)"></div>
<div style="background-image: url(img/04.jpg)"></div>
<div style="background-image: url(img/02.jpg)"></div>
<div style="background-image: url(img/03.jpg)"></div>
<div style="background-image: url(img/04.jpg)"></div>
</div>
</div>
</section>
как вывести рисунки в галерею из базы ?