-
Notifications
You must be signed in to change notification settings - Fork 1
/
popolaDatabaseFile.php
50 lines (48 loc) · 2.06 KB
/
popolaDatabaseFile.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!-- Page that allows teachers to enter file to populate a database -->
<?php
session_start();
if(!isset($_SESSION['username']) || empty($_SESSION['username'])) {
header('location: index.php');
} else {
$link = mysqli_connect($_SESSION['servername'], $_SESSION['usertype'], $_SESSION['psw'], $_SESSION['DBname']);
if ($link === false) {
die("ERROR:Could not connect. " . mysqli_connect_error());
}
$username = $_SESSION['username'];
$sql = "SELECT TipoAccesso FROM UTENTE WHERE Username = '$username'";
$result = mysqli_query($link, $sql);
if(!$riga = mysqli_fetch_array($result)){
header('location: index.php');
} else {
if ($riga['TipoAccesso'] != "Libero"){
header('location: index.php');
}
}
}
$_SESSION['nomeDatabaseSelezionato'] = $_POST['nomeDatabaseSelezionato'];
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<link rel="icon" href="img/logo.png"/>
<title> Basi di Dati - SQL </title>
</head>
<body>
<!-- caricamento del navbar -->
<?php require_once("navbarDocente.php") ?>
<div class="container">
<form action="popolaDatabaseFile2.php" method="post">
<div class="form-group mt-3">
<input class="form-control mb-2" type="text" name="inputPercorso" placeholder="Inserire il percorso del file per popolare il database" required/>
<input class="form-control" type="text" name="inputNomeTabella" placeholder="Inserire il nome della tabella" required/>
</div>
<center><button type='submit' class='btn btn-primary'> ESEGUI </button></center>
</form>
</div>
<?php require_once("footer.php") ?>
</body>
</html>