please!!!
1) Usando o INPUT do tipo texto, crie um algoritmo que receba o nome de um Game e de uma Serie e mostre o resultado, ou seja, crie o script (OBS: Criei o HTML e o PHP)
Soluções para a tarefa
Respondido por
1
Resposta:
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Brainly</title>
</head>
<body>
<form action="<?=$_SERVER['PHP_SELF'];?>" method="POST">
Game: <input type="text" name="game"><br><br>
Série: <input type="text" name="serie"><br><br>
<button type="submit">Resultado</button><br><br>
</form>
<?php
if(isset($_POST['game'],$_POST['serie'])){
echo $_POST['game']. "<br>";
echo $_POST['serie'];
}
?>
</body>
</html>
leitedoce345:
pode me ajudar com mais duas questões?
Perguntas interessantes
Matemática,
4 meses atrás
Ed. Física,
4 meses atrás
Português,
4 meses atrás
Geografia,
5 meses atrás
Sociologia,
10 meses atrás
Matemática,
10 meses atrás
Geografia,
10 meses atrás