Advertisement
Guest User

Untitled

a guest
Mar 30th, 2017
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.04 KB | None | 0 0
  1. ..........
  2. $data["all_types"] = $this->data_model->get_data("all_types",300,"Asc");
  3. $this->load->view("preview_brands",$data);
  4. ...........
  5.  
  6. <h4>Discover brands </h4>
  7. <div class="decoration"></div>
  8. <?php foreach($all_types as $item): ?>
  9. <div style="display:block;color:#000;">
  10. <a style="font-size:17px;margin:15px 2px;font-family:Cgothic;"
  11. href="<?php echo site_url()."...../..../".$item["id"]; ?>"
  12. class="scale-hover"
  13. title="<?php echo str_replace("_"," ",$item["name"]);?>">
  14. <strong><?php echo str_replace("_"," ",$item["name"]);?></strong>
  15. </a>
  16.  
  17. </div>
  18. <?php endforeach; ?>
  19.  
  20. function get_data($db,$i,$order)
  21. {
  22. $this->db->order_by("name",$order);
  23. $this->db->where('consent',"yes");
  24. $query=$this->db->get($db);
  25. return $query->result_array();
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement