You've already forked OpenShorte.old
							
							
		
			
				
	
	
		
			39 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
    if ( ! isset ( $_SESSION [ 'user_id' ] ) ) {
 | 
						|
        header ( "Location: " . $GLOBALS [ 'config' ] [ 'installation_path' ] . "/login" );
 | 
						|
    }
 | 
						|
    $database = new Database ( $GLOBALS [ 'config' ] [ 'db' ] );
 | 
						|
    $database->connect ( );
 | 
						|
    $database->prepare ( "SELECT links.ID, links.URL FROM links WHERE links.created_by = " . $_SESSION [ 'user_id' ] );
 | 
						|
    $database->execute ( );
 | 
						|
    $result = $database->get_result ( );
 | 
						|
?>
 | 
						|
<!DOCTYPE html>
 | 
						|
<html>
 | 
						|
    <head>
 | 
						|
        <title>Management Panel | <?=$GLOBALS['config']['website_name']?></title>
 | 
						|
        <link href="<?=$GLOBALS['config']['installation_path']?>/favicon.ico" rel="icon" type="image/x-icon">
 | 
						|
    </head>
 | 
						|
    <body>
 | 
						|
        <button onclick="logout()">Logout</button>
 | 
						|
        <div id="urllist">
 | 
						|
<?php
 | 
						|
                if ( $result->rowCount ( ) == 0 ) {
 | 
						|
                    echo ( "You have not created any URL yet.<br>" );
 | 
						|
                }
 | 
						|
                else {
 | 
						|
                    $rows = $result->fetchAll ( PDO::FETCH_ASSOC );
 | 
						|
                    foreach ( $rows as $row ) {
 | 
						|
                        echo ( "\t\t\t" . '<div>' . $row [ 'ID' ] . " | " . $row [ 'URL' ] . "</div>\n" );
 | 
						|
                    }
 | 
						|
                }
 | 
						|
?>
 | 
						|
        </div>
 | 
						|
        <input type="text" id="form-url" placeholder="URL:">
 | 
						|
        <button onclick="urlinsert()">Insert new URL</button><br>
 | 
						|
        <div id="responsetext"></div>
 | 
						|
        <script src="<?=$GLOBALS['config']['installation_path']?>/lib/js/insertnew.js"></script>
 | 
						|
        <script>var script_name = "<?=$GLOBALS['config']['installation_path']?>";</script>
 | 
						|
    </body>
 | 
						|
</html>
 |