Mysqli连接失败

时间:2016-09-20 05:30:03

标签: php mysql

我得到了

  

致命错误:无法在第12行的/homepages/26/d186570961/htdocs/test.php中实例化不存在的类:mysqli

使用SSH运行test.php时。 test.php位于根文件夹中。我可以使用浏览器运行test.php但不能运行ssh。如何在ssh中为crontab运行它?这是我的代码。谢谢你的帮助。

set_time_limit(10000);
$con = new mysqli($host_name, $user_name, $password, $database);
if (mysqli_connect_errno()) {
trigger_error('Database connection failed: '  . mysqli_connect_error(),   
E_USER_ERROR);}
$sqlstr = "UPDATE `oc_product` INNER JOIN `new_qty`  ON `oc_product`.`product_id`     
= `new_qty`.`product_id` SET `oc_product`.`quantity` = `new_qty`.`qty`";
$qry = $con->query($sqlstr);

0 个答案:

没有答案