News Box Problem

necm1

Member
Jan 27, 2014
111
16
Hey community,
I currently create a content management system, and unfortunately a little mistake in the News box, somehow they do not want.
Screen:

Code:
Code:
  <div class="span8">
                                                                    <?php
    $news = mysql_query("SELECT * FROM cms_news ORDER BY ID");
    while($n = mysql_fetch_assoc($news)) {
    ?>
                    <div style="height:250px;">
                <div id="wowslider-container1">
                    <div class="ws_images">
                    <ul>
                                                            <li><a href="article.php?id=<?php echo $n['id']; ?>"><img src="<?php echo $n['image']; ?>" alt="<?php echo $n['title']; ?>" title="<?php echo $n['title']; ?>" id="wows1_0"/></a href="article.php?id=<?php echo $n['id']; ?>"></li>
                                                    </ul>
                                                    </div>
                    <div class="ws_shadow"></div>
                  <div class="ws_bullets"><div>
                                                            <a href="#" title="<?php echo $n['title']; ?>" class=""><?php echo $n['title']; ?></a>
                                                    </div></div>
                </div>
                <script type="text/javascript" src="http://.../o/data/js/wowslider/engine/wowslider.js"></script>
                <script type="text/javascript" src="http://.../o/data/js/wowslider/engine/script.js"></script>
            </div>
            </div>
            <?php } ?>
    </div>
 

Users who are viewing this thread

Top