You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							49 lines
						
					
					
						
							1.3 KiB
						
					
					
				
			
		
		
		
			
			
			
				
					
				
				
					
				
			
		
		
	
	
							49 lines
						
					
					
						
							1.3 KiB
						
					
					
				| <?php | |
| 
 | |
|   session_start(); | |
| 
 | |
|   @include '../cgi-bin/conn.conn'; | |
|   @include '../cgi-bin/functions.inc'; | |
|   @include '../cgi-bin/params.inc'; | |
| 
 | |
|   $GLOBALS['conn']; | |
| 
 | |
|   $conn = @mysqli_connect($DATAhst,$DATAusr,$DATApwd,$DATAdtb)or die("CONNECTION ERROR"); | |
|   mysqli_set_charset($conn, "utf8"); | |
| 
 | |
|   if(@$_GET['q']){ $GLOBALS['getQ'] = explode("/",$_GET['q']); } | |
|   if(!$getQ[0]) {$getQ[0] = 'orders';} | |
| 
 | |
| ?> | |
|  | |
| <!DOCTYPE html> | |
| <html lang="it"> | |
|   <head> | |
|     <meta charset="UTF-8"> | |
|     <title>IoLovOlio</title> | |
|     <meta name="viewport" content="width=device-width, user-scalable=no,initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0"> | |
|     <meta name="description" content="."> | |
|     <link rel="stylesheet" href="../assets/css/styles.css"> | |
|   </head> | |
|   <body> | |
|  | |
|     <main class="main-content"> | |
|  | |
|       <div class="container"> | |
|         <div class="row no-gutters"> | |
|           <div class="col-6 mx-auto"> | |
|             <a class="button button-<?= $getQ[0] == 'orders' ? 'brown' : 'white';?>" href="/admin/orders">Ordini</a> | |
|           </div> | |
|           <div class="col-6 mx-auto"> | |
|             <a class="button button-<?= $getQ[0] == 'users' ? 'brown' : 'white';?>" href="/admin/users">Utenti</a> | |
|           </div> | |
|         </div> | |
|       </div> | |
|  | |
|       <?php | |
|         @include $getQ[0].'.php'; | |
|       ?> | |
|  | |
|     </main> | |
|   </body> | |
| </html>
 |