mirror of
				https://github.com/fspc/biketree.git
				synced 2025-10-31 08:55:36 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			65 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			65 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
| <?php session_start(); ?>
 | |
| 
 | |
| <html>
 | |
| <head>
 | |
| <SCRIPT LANGUAGE="Javascript">
 | |
| <!---
 | |
| function decision(message, url)
 | |
| {
 | |
|   if(confirm(message) )
 | |
|   {
 | |
|     location.href = url;
 | |
|   }
 | |
| }
 | |
| // --->
 | |
| </SCRIPT> 
 | |
| 
 | |
| </head>
 | |
| 
 | |
| <body>
 | |
| <?php
 | |
| 
 | |
| include ("../settings.php");
 | |
| include ("../language/$cfg_language");
 | |
| include ("../classes/db_functions.php");
 | |
| include ("../classes/security_functions.php");
 | |
| include ("../classes/display.php");
 | |
| include ("../classes/form.php");
 | |
| 
 | |
| $lang=new language();
 | |
| $dbf=new db_functions($cfg_server,$cfg_username,$cfg_password,$cfg_database,$cfg_tableprefix,$cfg_theme,$lang);
 | |
| $sec=new security_functions($dbf,'Admin',$lang);
 | |
| if(!$sec->isLoggedIn())
 | |
| {
 | |
| 	header ("location: ../login.php");
 | |
| 	exit();
 | |
| }
 | |
| 
 | |
| $display=new display($dbf->conn,$cfg_theme,$cfg_currency_symbol,$lang);
 | |
| $display->displayTitle("$lang->manageUsers");
 | |
| 
 | |
| $f1=new form('manage_users.php','POST','users','400',$cfg_theme,$lang);
 | |
| $f1->createInputField("<b>$lang->searchForUser</b>",'text','search','','24','300');
 | |
| $f1->endForm();
 | |
| 
 | |
| $tableheaders=array("$lang->rowID","$lang->lastName","$lang->firstName","$lang->username","$lang->password","$lang->type","$lang->updateUser","$lang->deleteUser");
 | |
| $tablefields=array('id','last_name','first_name','username','password','type');
 | |
| 
 | |
| 
 | |
| if(isset($_POST['search']))
 | |
| {
 | |
| 	$search=$_POST['search'];
 | |
| 	echo "<center>$lang->searchedForUser:<b> $search</b></center>";
 | |
| 	$display->displayManageTable("$cfg_tableprefix",'users',$tableheaders,$tablefields,'username',"$search",'last_name');
 | |
| }
 | |
| else
 | |
| {
 | |
| 	$display->displayManageTable("$cfg_tableprefix",'users',$tableheaders,$tablefields,'','','last_name');
 | |
| }
 | |
| 
 | |
| $dbf->closeDBlink();
 | |
| 
 | |
| 
 | |
| ?>
 | |
| </body>
 | |
| </html>
 |