Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- include_once('includes/dbConnect.php');
- ?>
- <?php
- $query=mysql_query("select * from persons");
- $data = array();
- while ($test = mysql_fetch_array($query)) {
- $data[]['content'] = "<div class='slide_inner'><a class='photo_link' href='#'><img class='photo' src='{$test['Image']}' alt='Bike'></a><a class='caption' href='#'>Sample Carousel Pic Goes Here And The Best Part is that...</a></div>";
- $data[]['content_button'] = "<div class='thumb'><img src='{$test['Image']}' alt='bike is nice'></div><p>Agile Carousel Place Holder</p>";
- }
- echo stripslashes(json_encode($data));
- ?>
Advertisement
Add Comment
Please, Sign In to add comment