-
Notifications
You must be signed in to change notification settings - Fork 0
/
result.php
53 lines (47 loc) · 1.38 KB
/
result.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
51
52
53
<?php
// creo la mia variabile per la storiella
$storiella = $_GET["storiella"];
// il vecchio console. log()
var_dump($storiella);
// creo la mia variabile per la parola da censurare
$parola = $_GET["parola"];
var_dump($parola);
// ESEMPIO DI str_replace
// str_replace(
// array|string $search,
// array|string $replace,
// string|array $subject,
// int &$count = null
// ): string|array
// creo la mia variabile per la nuova storiella
$newstoriella = str_replace($parola, "***", $storiella);
var_dump($newstoriella);
?>
<!-- VADO A STAMPARE IL TUTTO IN UN NUOVO DOCUMENTO HTML -->
<!DOCTYPE html>
<html lang="it">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Nuova storiella</title>
</head>
<body>
<!-- con echo stampo in html -->
<h3>Storiella CENSURATA</h3>
<div>
<?php echo "La storiella dell'utente è: " . $storiella; ?>
</div>
<!-- con il comando echo strlen($stringa); vado a stampare la lunghezza della mia variabile -->
<div>
<?php echo "La lunghezza della storiella è " . strlen($storiella); ?>
<div>
</div>
<div>
<?php echo "La storiella CENSURATA dell'utente è: " . $newstoriella; ?>
</div>
<div>
<?php echo "La lunghezza della storiella censurata è " . strlen($newstoriella);
?>
<div>
</body>
</html>