lemeck

Untitled

Aug 3rd, 2013
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.61 KB | None | 0 0
  1.  
  2. <?php
  3. include_once('includes/dbConnect.php');
  4.  
  5.  
  6. $query=mysql_query("select * from persons  order by date desc LIMIT 0,10 ");
  7. echo $query ;
  8.  
  9.  
  10. $data = array();
  11. while ($test = mysql_fetch_array($query)) {
  12.     $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>";
  13.     $data[]['content_button'] = "<div class='thumb'><img src='{$test['Image']}' alt='bike is nice'></div><p>Agile Carousel Place Holder</p>";
  14. }
  15. echo json_encode($data);
  16. ?>
Advertisement
Add Comment
Please, Sign In to add comment