11/11/2015, 13:23
|
| | Fecha de Ingreso: octubre-2015
Mensajes: 12
Antigüedad: 9 años, 1 mes Puntos: 0 | |
Respuesta: No me encuentra el metodo Fatal error: Call to undefined function jugarPar Cita: <?php
//include the required files
include('partida.php');
include('colgado.php');
//this will keep the game data as they refresh the page
session_start();
//if they haven't started a game yet let's load one
if (!$_SESSION['partida']['colgado']){
$_SESSION['partida']['colgado'] = new colgado();
}
$colgado= new jugarPartida();
?>
<html>
<head>
<title>Colgado</title>
</head>
<body>
<div id="content">
<form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="POST">
<h2>Juguemos al Colgado!</h2>
<?php
$_SESSION['partida']['colgado'] = $colgado->jugarPartida(isset($_POST));
?>
</form>
</div>
</body>
</html> |