douye4254 2016-11-15 04:51
浏览 29
已采纳

摇滚,纸,剪刀游戏php

So, I am creating a Rock, Paper, Scissor game in php. I am creating two webpages. The first webpage will contain three radio buttons for rock, paper, scissor and one submit button. The first page will send the information to the second page. The second page is the computer. The computer will randomly choose between rock, paper, scissor.

This is what I have right now. It is just not sending the information in the right way.

FirstPage:

<?php
session_start();    //session start
  if(!isset($_SESSION['username']))     //if session not found redirect to homepage
  {
    header('location:login.php');
  }
    else{
      echo '<form action="game.php" method="post" />
            <input type="radio" name="user_choice" value="Rock" title="Rock" />Rock <br /><br />
            <input type="radio" name="user_choice" value="Paper" title="Paper" />Paper <br /><br />
            <input type="radio" name="user_choice" value="Scissors" title="Scissors" />Scissors <br /><br />
<input type="button" name="user_choice" value="Submit" title="Submit" /> <br /><br />
          
            </form> ';
          }
?>

SecondPage:

<?php
session_start();    //session start
//if session not found redirect to homepage
if(!isset($_SESSION['username'])) {
    header('location:login.php');
} elseif {
    elseif($_POST['user_choice']) {
        $user_choice = $_POST['user_choice'];
        $Choosefrom= array(Rock, Paper, Scissors);
        $Choice= rand(0,2);
        $Computer=$Choosefrom[$Choice];
        elseif($user_choice == $Computer) {
            echo 'Player: '.$user_choice.' CPU: '.$Computer.'. Result: Win';
        } else {
            echo 'Player: '.$user_choice.' CPU: '.$Computer.'. Result: Lose';
        }
   }
}
?>

</div>
  • 写回答

1条回答 默认 最新

  • dqq3623 2016-11-15 05:07
    关注

    Here is working code. first page

    <?php
    session_start();    //session start
      if(!isset($_SESSION['username']))     //if session not found redirect to homepage
      {
        header('location:login.php');
      }
        else{
          echo '<form action="game.php" method="post" />
                <input type="radio" name="user_choice" value="Rock" title="Rock" />Rock <br /><br />
                <input type="radio" name="user_choice" value="Paper" title="Paper" />Paper <br /><br />
                <input type="radio" name="user_choice" value="Scissors" title="Scissors" />Scissors <br /><br />
                <input type="submit" name="form_submit" value="submit"/> 
                </form> ';
              }
    ?>
    

    game.php page code

    <?php
    session_start();    //session start
    //if session not found redirect to homepage
    if(!isset($_SESSION['username'])) {
        header('location:login.php');
    } elseif {
        if($_POST['user_choice']) {
            $user_choice = $_POST['user_choice'];
            $Choosefrom= array('Rock', 'Paper', 'Scissors');
            $Choice= rand(0,2);
            $Computer=$Choosefrom[$Choice];
            if($user_choice == $Computer) {
                echo 'Player: '.$user_choice.' CPU: '.$Computer.'. Result: Win';
            } else {
                echo 'Player: '.$user_choice.' CPU: '.$Computer.'. Result: Lose';
            }
       }
    }
    ?>
    

    Hope it will help you.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 apm2.8飞控罗盘bad health,加速度计校准失败
  • ¥15 求解O-S方程的特征值问题给出边界层布拉休斯平行流的中性曲线
  • ¥15 谁有desed数据集呀
  • ¥20 手写数字识别运行c仿真时,程序报错错误代码sim211-100
  • ¥15 关于#hadoop#的问题
  • ¥15 (标签-Python|关键词-socket)
  • ¥15 keil里为什么main.c定义的函数在it.c调用不了
  • ¥50 切换TabTip键盘的输入法
  • ¥15 可否在不同线程中调用封装数据库操作的类
  • ¥15 微带串馈天线阵列每个阵元宽度计算