Changeset 4 for www/finance/inventory.php
- Timestamp:
- Jan 14, 2008, 9:48:39 PM (17 years ago)
- Location:
- www
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
www
-
Property svn:ignore
set to
config.php
php_script_error.log
-
Property svn:ignore
set to
-
www/finance/inventory.php
r1 r4 1 <? 1 <?php 2 include('../global.php'); 2 3 include('../style.php'); 3 include('../db.php');4 //include('../is/global.php');5 DB_Init('localhost','root','','is');6 DB_Query('SET CHARACTER SET latin2');7 ShowHeader('Zaøízení sítì','Zaøízení');8 4 9 // Seznam segmentù a zaøízení 5 ShowHeader('Zařízení sítě','Zařízení'); 6 7 // Seznam segmentů a zařízení 10 8 $TotalPrice = 0; 11 9 echo('Výpis skladových zásob:<br><table style="font-size: smaller;" border="1" cellspacing="0" cellpadding="3">'); 12 echo('<tr><th>Název</th><th>Datum<br>zakoupení</th><th>Cena [K è]</th><th>Poèet</th><th>Cena<br> dohromady [Kè]</th></tr>');13 DB_Query("SELECT * FROM network_devices WHERE used=2");14 while($Row = DB_Row())10 echo('<tr><th>Název</th><th>Datum<br>zakoupení</th><th>Cena [Kč]</th><th>Počet</th><th>Cena<br> dohromady [Kč]</th></tr>'); 11 $DbResult = $Database->query("SELECT * FROM network_devices WHERE used=2"); 12 while($Row = $DbResult->fetch_array()) 15 13 { 16 14 echo('<tr><td>'.$Row['name'].'</td><td align="right">'.HumanDate($Row['date']).'</td><td align="right">'.$Row['price'].'</td><td align="right">'.$Row['count'].'</td><td align="right">'.$Row['count'] * $Row['price'].'</td></tr>');
Note:
See TracChangeset
for help on using the changeset viewer.