Home  >  Article  >  Backend Development  >  php-初学PHP,这段测试代码的初始化错在哪儿?怎么改?

php-初学PHP,这段测试代码的初始化错在哪儿?怎么改?

WBOY
WBOYOriginal
2016-06-02 11:32:03958browse

phphtml

<code><?php $number_to_guess = 42;    $num_tries = (isset($_POST['num_tries']))? $num_tries+1:1;    if(!isset($_POST['guess']))        $message = "Welcome to the guessing machine!";    elseif(!is_numeric($_POST['guess']))        $message = "Not a num!";    else if($_POST['guess'] == $number_to_guess)        $message = "Well Done!";    else if($_POST['guess'] > $number_to_guess)        $message = $_POST['guess']." is too big, Try a smaller one!";    else if($_POST['guess']             <title>A HTML/PHP that calls itself!</title>            <h1>        <?php echo "Guessing Result:<br/>\"".$message."\"";        ?>    </h1>    <p><strong>Guess number:</strong>    <?php echo $num_tries;    ?>    </p>    <form method="post" action="<?php%20%20%20%20%20%20%20%20echo%20%24_SERVER%5B'PHP_SELF'%5D;%20%20%20%20?>%20%20%20%20">        <p><label for="guess">Type your guess here:</label><br>        <input type="text" id="guess" name="guess"></p>        <input type="hidden" name="num_tries" value="        <?php            echo $num_tries;        ?>">        <button type="submit" name="submit" value="send">Guess it!</button>    </form>      </code>

图片说明

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn