Diferencia entre revisiones de «Usuario:ManuelRomero/ProgramacionWeb/Sintaxis/ejercicios/17 TirarDado»
De WikiEducator
(Página creada con «=== Ejercicio 17(Con imágenes): Tirar un dado === <br /> * Tenemos un index.php que nos muestra 6 dados según imagenes <gallery> image:dado_1.png image:dado_2.png image:d...») |
|||
Línea 1: | Línea 1: | ||
=== Ejercicio 17(Con imágenes): Tirar un dado === | === Ejercicio 17(Con imágenes): Tirar un dado === | ||
<br /> | <br /> | ||
+ | {{MRM_Actividad|Title=Ejercicio 17(Con imágenes): Tirar un dado| | ||
* Tenemos un index.php que nos muestra 6 dados según imagenes | * Tenemos un index.php que nos muestra 6 dados según imagenes | ||
<gallery> | <gallery> | ||
Línea 54: | Línea 55: | ||
|enlace=#Tabla_de_Contenidos | |enlace=#Tabla_de_Contenidos | ||
|texto=Volver al índice | |texto=Volver al índice | ||
+ | }} | ||
}} | }} | ||
}} | }} |
Última revisión de 05:09 25 nov 2024
Ejercicio 17(Con imágenes): Tirar un dado
Se trata de hacer un programa que apuestes por un dado El programa generará un valor aleatorio y me dirás si he ganado o perdido. Se puede usar un formulario como sigue: <form action="jugar.php" method="post"> <div style="margin: 0px auto;width:100%; text-align: center"> <button type="submit" name="dado" value="1"> <img src="./imagenes/dado_1.png" alt=""> </button> <button type="submit" name="dado" value="2"> <img src="./imagenes/dado_2.png" alt=""> </button> <button type="submit" name="dado" value="3"> <img src="./imagenes/dado_3.png" alt=""> </button> <button type="submit" name="dado" value="4"> <img src="./imagenes/dado_4.png" alt=""> </button> <button type="submit" name="dado" value="5"> <img src="./imagenes/dado_5.png" alt=""> </button> <button type="submit" name="dado" value="6"> <img src="./imagenes/dado_6.png" alt=""> </button> </form> Al ser lo button de tipo submit, al presionar uno de ellos iremos al fichero jugar.php y podremos obtener el valor del botón presionado $dado = $_POST['dado'];
|
}}