init
Showing
1 changed file
with
3 additions
and
2 deletions
| ... | @@ -15,11 +15,12 @@ | ... | @@ -15,11 +15,12 @@ |
| 15 | <div class="panel-body cl"> | 15 | <div class="panel-body cl"> |
| 16 | <div class="row cl text-c"> | 16 | <div class="row cl text-c"> |
| 17 | 17 | ||
| 18 | <?php foreach ($session->products as $k => $v):?> | 18 | <?php foreach ($this->session->products as $k => $v):?> |
| 19 | <div class="col-sm-4 mb-20"> | 19 | <div class="col-sm-4 mb-20"> |
| 20 | <label class="radio"> | 20 | <label class="radio"> |
| 21 | <input type="radio" value="<?=$v->productName?>" name="1"/> | 21 | <input type="radio" value="<?=$v->id?>" name="1"/> |
| 22 | <img src="holder.js/180x180"> | 22 | <img src="holder.js/180x180"> |
| 23 | <?=$v->productName?> | ||
| 23 | </label> | 24 | </label> |
| 24 | </div> | 25 | </div> |
| 25 | <?php endforeach;?> | 26 | <?php endforeach;?> | ... | ... |
-
Please register or sign in to post a comment