我是PHP的新手所以请耐心等待。
这是在我的网站上输入预订表的代码:
这是我在网站前端的表单中输入数据时遇到的错误:
我已经在这里工作了几个小时,但我无法到达任何地方。
我认为问题可能出在:
SELECT u_id FROM `joom_hl_puser_role` WHERE pid = '1'
表puser_role只是将joomla用户连接到他们可以在网站上管理的酒店。 (我想在表格中输入酒店经理的joomla用户号码。)
但我确信语法是正确的。
感谢您的帮助。
答案 0 :(得分:1)
您正在“双引号”中插入TIME()和NOW()函数。尝试尝试追逐它看起来像这样
$query = "INSERT INTO `#__chbookings_bookings` (`id` ,`company` ,`firstname`,`lastname`, ,`email` ,`reference_number` , `transactionid` ,`invoice_number` , `property` ,`payment_type` ,`people` ,`phonenumber` ,`checkin_date` ,`checkout_date`,`room_type` , `status` , `total_amount` ,`amount_paid` ,`pending_amount`, `date_booked`,`last_updated`, `comments`) VALUES (NULL , '".$user_id."','".$data['firstName']."', '".$data['lastName']."',
'".$data['email']."', ".TIME().",
'".$result["transaction_id"]."','".$invoice_number."',
(SELECT u_id FROM `#__hl_puser_role` WHERE pid = '".$data['property_id']."'),
0 ,'".$total_adult."', '".$data['phone']."',
'".$session->get('checkin_date')."', '".$session->get('checkout_date')."', 0, 0,
'".$final_amount."', '".$session->get('amount_payable')."',
'".$session->get('balance_amount')."',
".NOW().", ".NOW().", 'comments'";
答案 1 :(得分:1)
问题是你使用TIME();
TIME需要传递参数。
mysql> select TIME();
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ')' at line 1
将其更改为
TIME(NOW())
来自TIME
的MySQL手册TIME(表达式)
提取时间或日期时间表达式expr的时间部分 将其作为字符串返回。
此函数对于基于语句的复制不安全。开始 使用MySQL 5.5.1时,如果使用此功能,则会记录警告 binlog_format设置为STATEMENT。 (Bug#47995)
mysql> SELECT TIME('2003-12-31 01:02:03');
-> '01:02:03'
mysql> SELECT TIME('2003-12-31 01:02:03.000123');
-> '01:02:03.000123'