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)
Respostas
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 similares
3 anos atrás
3 anos atrás
3 anos atrás
5 anos atrás
5 anos atrás
5 anos atrás
7 anos atrás