24 lines
		
	
	
		
			789 B
		
	
	
	
		
			PHP
		
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			789 B
		
	
	
	
		
			PHP
		
	
	
	
| <?php
 | |
| /*****************************************************************************
 | |
| IP Reg, a PHP/MySQL IPAM tool
 | |
| Copyright (C) 2007-2009 Wietse Warendorff (up to v0.5)
 | |
| Copyright (C) 2011-2023 Thomas Hooge
 | |
| 
 | |
| SPDX-License-Identifier: GPL-3.0-or-later
 | |
| *****************************************************************************/
 | |
| 	
 | |
| include("includes.php");
 | |
| include("header.php");
 | |
| 			
 | |
| $sql = "SELECT a.assetclass_id, a.assetclass_name, g.assetclassgroup_id,
 | |
|             g.assetclassgroup_name, g.assetclassgroup_color
 | |
| 	FROM assetclass AS a LEFT OUTER JOIN assetclassgroup AS g USING (assetclassgroup_id)
 | |
| 	ORDER BY a.assetclass_name";
 | |
| $sth = $dbh->query($sql);
 | |
| $smarty->assign("assetclasses", $sth->fetchAll(PDO::FETCH_ASSOC));
 | |
| 
 | |
| $smarty->display("assetclass.tpl");
 | |
| 
 | |
| include("footer.php");
 | |
| ?>
 |