Advertisement
Jodyone

portfolio.php

May 14th, 2014
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.    
  2.    <ul  class="nav nav-pills ">
  3.         <li><a href="quote.php">Quote</a></li>
  4.         <li><a href="buy.php">Buy</a></li>
  5.         <li><a href="sell.php">Sell</a></li>
  6.         <li><a href="history.php">History</a></li>
  7.         <li><a href="logout.php"><strong>Log Out</strong></a></li>
  8.         <li><a href="change.php">Change Password</a></li>
  9.     </ul>
  10. <table class="table table-striped">
  11.     <thead>
  12.         <tr>
  13.             <th>Symbol</th>
  14.             <th>Name</th>
  15.             <th>Shares</th>
  16.             <th>Price</th>
  17.             <th>TOTAL</th>
  18.         </tr>
  19.     </thead>
  20. <tbody>
  21.      <table>
  22.         <?php
  23.             foreach ($positions as $position)
  24.             {
  25.                 print("<tr>");
  26.                 print("<td>" . $position["symbol"] . "</td>");
  27.                 print("<td>" . $position["name"] . "</td>");
  28.                 print("<td>" . $position["shares"] . "</td>");
  29.                 print("<td>" . $position["price"] . "</td>");
  30.                 print("<td>" . $total . "</td>");
  31.                 print("</tr>");
  32.             }
  33.         ?>
  34.         <td colspan="4">CASH</td>
  35.             <td>
  36.                 <?php
  37.                     $cash = number_format( $cash_bal[0]['cash'],2);
  38.                     print($cash);
  39.                 ?>
  40.             </td>      
  41. </tbody>
  42. </table>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement