-
Notifications
You must be signed in to change notification settings - Fork 1
/
avviaSpider.php
executable file
·46 lines (39 loc) · 1.35 KB
/
avviaSpider.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
<?php
$idBtnAvvioRicerca = 'avviaRicerca';
$nomeCheckList = 'elencoProfSelezionati';
if(isset($_GET[$idBtnAvvioRicerca])){
$hostname = 'localhost';
$username = 'root';
$password = '';
$database_name = 'dbspider';
try {
/*connessione*/
$dbh = new PDO("mysql:host=$hostname;dbname=$database_name", $username, $password);
/*deselezione di tutti i campi*/
$stmt = $dbh->prepare('UPDATE professori SET selezionato=FALSE, contatore=0'); /*stmt = statement*/
$stmt->execute();
/*seleziono solo i prof che sono stati selezionati dell'utente*/
foreach($_GET['elencoProfSelezionati'] as $professore){ //elencoProfSelezionati è un array contenente le checkbox selezionate
$stmt->closeCursor();
$stmt = $dbh->prepare('UPDATE professori SET selezionato=TRUE WHERE idProf=:idProf'); //stmt = statement
$stmt->bindParam(':idProf', $professore, PDO::PARAM_INT);
$stmt->execute();
}
$cmd = escapeshellcmd('python ' .__DIR__ .'/gestoreSpider.py');
echo "cmd: $cmd <br>";
echo shell_exec($cmd);
/*disconnessione*/
$dbh = null;
/*redirecting alla pagina dei risultati*/
header("Location: classifica.php");
die();
}
catch(Exception $e)
{
echo $e->getMessage();
}
}
else{
echo 'Tu non puoi accedere direttamente a questa pagina';
}
?>