Guest User

Untitled

a guest
Jul 18th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. for($k=0; $k < $count; $k++)
  2. {
  3. $row = $result->fetch_assoc();
  4. ?>
  5. <tr class="tbl_fund_list">
  6. <td class="fund_name"><?php echo($row['fund_name']); ?></td>
  7. <td><?php echo($row['inv_nav']); ?></td>
  8. <td><?php echo($row['date']);?></td>
  9. <td><?php echo($row['inv_nav']*$row['inv_qty']);?></td>
  10. <td><button class="terminate_btn">Go</button></td>
  11. </tr>
  12. <?php
  13. }
Add Comment
Please, Sign In to add comment