我得到了
致命错误:无法在第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);