-
Notifications
You must be signed in to change notification settings - Fork 0
/
EasyPHP.html
56 lines (51 loc) · 3.66 KB
/
EasyPHP.html
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
51
52
53
54
55
56
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js" integrity="sha384-IQsoLXl5PILFhosVNubq5LC7Qb9DXgDA9i+tQ8Zj3iwWAwPtgFTxbJ8NT4GN1R8p" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" integrity="sha384-cVKIPhGWiC2Al4u+LWgxfKTRIcfu0JTxR+EQDz/bgldoEyl4H0zUF0QKbrJ0EcQF" crossorigin="anonymous"></script>
<link rel="stylesheet" href="css/style.css">
<link href="https://fonts.googleapis.com/css?family=Montserrat:500&display=swap" rel="stylesheet">
<title>Relazione Kevin Kulejmani</title>
</head>
<body>
<header>
<a class="logo" href="Index.html">Relazione</a>
<nav>
<ul class="nav__links">
<li class="dropdown">
<button>Teoria</button>
<ul class="dropdown-content">
<li><a href="dbms.html">DBMS</a></li>
<li><a href="Modellizzazione.html">Modelizzazione</a></li>
<li><a href="Associazioni.html">Associazioni</a></li>
<li><a href="Chiavi.html">Tipi di Chiavi</a></li>
<li><a href="EasyPHP.html">EasyPHP</a></li>
<li><a href="WAMP.html">WAMP</a></li>
</ul>
</li>
<li><a href="pratica.html">Pratica</a></li>
<li><a href="Record.html">Record</a></li>
<li><a href="ModalitàWampp.html">Modalità di Esportazione e Importazione del file</a></li>
</ul>
</nav>
</header>
<div class="testo">
<h1>EasyPHP</h1>
<p>
EasyPHP è una piattaforma di sviluppo web di tipo WAMP che permette di far funzionare localmente un server web basato sull’interprete PHP.
EasyPHP è un ambiente di sviluppo web completo, che offre un server web Apache, un server di database MySQL, un interprete di script PHP e un amministratore di database MySQL con interfaccia grafica chiamato phpMyAdmin.
</p>
<img src="IMG/Easyphp.png" alt="" style="width: 380px;">
<br>
<br>
<p>EasyPHP non costituisce solamente un'applicazione, bensì un ambiente di sviluppo completo che include un server web Apache, un server di database MySQL, un interprete di script PHP e un gestore di database MySQL con un'interfaccia grafica denominata phpMyAdmin. L'installazione di tutti questi componenti simultaneamente fornisce tutto il necessario per avviare agevolmente lo sviluppo locale di siti web in PHP. </p>
<p>Inoltre EasyPHP dispone di un’interfaccia d’amministrazione che permette di gestire gli utenti, l’avvio e lo spegnimento dei server.E in modo automatico il server Apache crea un dominio virtuale (in modo locale) nell inidirizzo di localhost (http://127.0.0.1)</p>
</div>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js" integrity="sha384-IQsoLXl5PILFhosVNubq5LC7Qb9DXgDA9i+tQ8Zj3iwWAwPtgFTxbJ8NT4GN1R8p" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" integrity="sha384-cVKIPhGWiC2Al4u+LWgxfKTRIcfu0JTxR+EQDz/bgldoEyl4H0zUF0QKbrJ0EcQF" crossorigin="anonymous"></script>
<script src="js/index.js"></script>
</body>
</html>