我正在尝试向表中插入数据,但我遇到了这个令人沮丧的错误,我无法弄清楚出了什么问题。错误如下:
Fatal error: Call to a member function bind_param() on a non-object
我读过它意味着准备返回错误。这是发生错误的代码
$insert = $mysqli->prepare("insert into `hm_desktop`(`username`, `title`, `condition`, `description`, `price`, `brand`, `color`, `hard_drive_capacity`, `others`, `graphics_card`, `ram_capacity`, `operating_system`, `os_edition,` `processor_type`, `processor_speed`, `model`, `product_series`, `included_items`, `country`, image_one, image_two, image_three, image_four, image_five, `date`) values(?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)");
$insert->bind_param('sssssssssssssssssssss', $username, $title, $cond, $desc, $price, $brand, $color, $hard_drive_type, $others, $garphics_card, $ram_capacity, $operating_system, $os_edition, $processor_type, $processor_speed,$model, $product_series, $included_items, $country, $random_name_generated, $i2, $i3, $i4, $i5, $date);
$insert->execute();
我已经尝试了几个小时的一切,但似乎没有任何效果..我在这里错过了什么?请帮忙