Advertisement
Guest User

Untitled

a guest
Feb 11th, 2016
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.47 KB | None | 0 0
  1. <ul class="sequence-canvas">
  2. <li class="animate-in">
  3. <div class="intro">
  4. <h2>
  5. My Discount Pharmacy //set title from db
  6. </h2>
  7. <h3>
  8. We are an end to end healthcare service provider where the doctors can enter their prescriptions, patients can upload their prescriptions. //set subtitle
  9. </h3>
  10. </div>
  11. <img class="iphone" src="img/seq-slider/iphone.png" alt="iPhone4" /> //set image1 from DB
  12. <img class="iphone-shadow" src="img/seq-slider/iphone-shadow.png" alt="" /> //set image2 from DB
  13. </li>
  14. <li>
  15. <img class="ipad" src="img/seq-slider/ipad.png" alt="iPad" />//set image1 from DB
  16. <div class="slide2">
  17. <h2>
  18. My Discount Pharmacy // set title from DB
  19. </h2>
  20. <p>
  21. We are an end to end healthcare service provider where the doctors can enter their prescriptions, patients can upload their prescriptions. //Set subtitle from DB.
  22. </p>
  23. </div>
  24. <img class="ipad-shadow" src="img/seq-slider/ipad-shadow.png" alt="" /> //set image2 from DB
  25. </li>
  26. </ul>
  27.  
  28. <?php
  29. $sql=mysql_query("select * from phr_news order by news_id desc");
  30. while($row=mysql_fetch_array($sql)){
  31. $title=$row['title'];
  32. $subtitle=$row['sub_title'];
  33. $image1=$row['image1'];
  34. $image2=$row['image2'];
  35.  
  36.  
  37. }
  38. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement