-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstring.php
61 lines (53 loc) · 1.7 KB
/
string.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
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Operadores de String</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
.container {
width: 300px;
margin: 50px auto;
padding: 20px;
background-color: #fff;
border-radius: 5px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
input[type="text"],
input[type="submit"] {
margin-bottom: 10px;
width: 100%;
padding: 8px;
box-sizing: border-box;
}
</style>
</head>
<body>
<div class="container">
<h2>Operadores de String</h2>
<form method="post" action="">
<input type="text" name="nome" placeholder="Digite seu nome" required><br>
<input type="text" name="sobrenome" placeholder="Digite seu sobrenome" required><br>
<input type="submit" value="Concatenar">
</form>
<?php
if ($_SERVER["REQUEST_METHOD"] == "POST") {
$nome = $_POST['nome'];
$sobrenome = $_POST['sobrenome'];
// Concatenação
$nome_completo = $nome . ' ' . $sobrenome;
echo "Nome Completo (Concatenação): $nome_completo <br>";
// Atribuição de Concatenação
$nome .= ' ' . $sobrenome;
echo "Nome Completo (Atribuição de Concatenação): $nome";
}
?>
</div>
</body>
</html>