Home  >  Article  >  Backend Development  >  帮看下这段代码,插入数据库部分出有关问题,没找到异常

帮看下这段代码,插入数据库部分出有关问题,没找到异常

WBOY
WBOYOriginal
2016-06-13 11:54:43877browse

帮看下这段代码,插入数据库部分出问题,没找到错误

nbsp;html><br><br>        <br>                <meta><br>                <title>War-game -Add Your score</title><br>        <br>        <br>                <h2>War game - add your score</h2><br>                <?php <br />                        if(!empty($_POST['submit']))<br>                        {<br>                                $first_name=$_POST['first_name'];<br>                                $last_name=$_POST['last_name'];<br>                                $score=$_POST['score'];<br>                                echo $first_name;<br>                                echo $last_name;<br>                                echo $score;<br><br>                                $dbc=mysqli_connect('localhost','root','pengyu2408','score_list')or die('error in connet');<br>                                $query="INSERT INTO score_lis(first_name,last_name,score) VALUES('$first_name','$last_name','$score')";<br>                                mysqli_query($dbc,$query)or die('error_2');<br>                                echo '<p>Thanks for adding your new high score!</p>';<br>                                echo '<p><strong>FIRST_NAME:</strong>'.$first_name.'<br>';<br>                                echo '<strong>LAST_NAME:</strong>'.$last_name.'</p>';<br>                                echo '<p><strong>Score:</strong>'.$score.'<br></p>';<br>                                echo '<p><a><<Back to hight score</a></p>';<br>                                //clear the score data to clear the form<br>                                $firet_name="";<br>                                $last_name="";<br>                                mysqli_close($dbc);<br>                        }<br>                ?><br>                <hr><div class="clear">
                 
              
              
        
            </div>
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