无法将数据写入数据库

时间:2017-03-29 02:23:09

标签: php

我正在尝试用PHP编写一个简单的应用程序来编写和接收数据库中的数据。我能够通过我的PHP脚本检索数据库中已有的数据,但我无法写任何内容。当我尝试时,我没有任何错误 - 只是我的脚本标题和空白屏幕。

我的代码如下:

我的HTML

$a = @(0..9999)
$a.length

PHP

<form action="insert_book.php" method="post">

    <fieldset>
        <p><label for="ISBN">ISBN</label>
            <input type="text" id="ISBN" name="ISBN" maxlength="13" size="13" /></p>

        <p><label for="Author">Author</label>
            <input type="text" id="Author" name="Author" maxlength="30" size="30" /></p>    

        <p><label for="Title">Title</label>
            <input type="text" id="Title" name="Title" maxlength="60" size="30" /></p>      

        <p><label for="Price">Price</label>
            $ <input type="text" id="Price" name="Price" maxlength="7" size="7" /></p>      
    </fieldset>
    <p><input type="submit" value="Add New Book" /></p>

</form>

如果您发现任何问题,请与我们联系。 谢谢!

1 个答案:

答案 0 :(得分:1)

此行中有错误:

if (msqli_connect_errno()) {

应该是

if (mysqli_connect_errno()) {

您错过了y