resultadoManoDoc.jsp 556 Bytes
Newer Older
roshka committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
	<head>
		<meta charset="UTF-8">
		<title>Mano de 5 cartas</title>
	</head>
	<body>
		<h1>Mano de 5 cartas</h1>
		<%
			String[] direcciones_url = (String[])request.getAttribute("imagenesCarta");
			String resultado = (String)request.getAttribute("resultadoMano");
			for(int i=0;i<direcciones_url.length;i++){
			
		%>
			<img alt="Mano Poker" src=<%=direcciones_url[i]%>>
		<%}%><br>
		<h2>Tipo de mano: <%=resultado%></h2>
	</body>
</html>