0

我正在尝试将下面数组的内容插入到我的 mysql 表中提供的字段中。但我收到致命错误:调用未定义函数 mysql_insert_array(); 有任何想法吗?

  <?php

 // Open database here
 $connect = mysql_connect("xxxxx", "xxxx", "xxxx") or         die('Couldn\'t connect to MySQL Server: ' . mysql_error());
    mysql_select_db("xxxx", $connect ) or die('Couldn\'t Select the database: ' . mysql_error( $connect ));
    // Let's pretend these values were passed by a form
   $_POST['name'] = "Bob Marley";
   $_POST['country'] = "Jamaica";
   $_POST['music'] = "Reggae";
  $_POST['submit'] = "Submit";

  // Insert all the values of $_POST into the database table `artists`, except
  // for $_POST['submit'].  Remember, field names are determined by array keys!
  $result = mysql_insert_array("artists", $_POST, "submit");

  // Results
    if( $result['mysql_error'] ) {
    echo "Query Failed: " . $result['mysql_error'];
      } else {
    echo "Query Succeeded! <br />";
    echo "<pre>";
    print_r($result);
     echo "</pre>";
    }

   // Close database

     ?>
4

1 回答 1

7

mysql_insert_array不是 PHP 函数,因此无法调用。

您应该改为使用mysql_query来插入您的数组。或者,您应该真正使用mysql_pdomysqli库,因为这些mysql_*函数已被弃用。

于 2012-09-13T19:32:38.013 回答