我正在尝试在我的 Laravel 应用程序中实现AJAX Booking Calendar Pro 。(它是从 CodeCanyon 购买的)我已经实现了大部分插件,我只需要弄清楚如何将它连接到数据库,以便我可以保存和显示信息。我正在使用控制器方法。js文件的开头是这样的..
(function($)
{
$.fn.DOPBookingCalendar = function(options)
{
var Data = {'Type':'BackEnd',
'DataURL':'/php/load.php',
'SaveURL':'/php/save.php',
'DayNames':['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'],
'MonthNames':['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'],
'AvailableText':'AVAILABLE', // The available text.
'BookedText':'BOOKED', // The Booked text.
'UnavailableText':'NOT AVAILABLE', // The unavailable text.
'DateType':1, // 1: american style; 2: european style;
'PopupDisplayTime':300, // The time for the Pop-Up to Show/Hide
'StatusLabel':'Status', // The text for Availability label.
'PriceLabel':'Price', // The text for Price label.
'Currency':'$', // The currency.
'SubmitBtnText':'Submit', // The text for Submit button.
'ResetBtnText':'Reset', // The text for Reset button.
'ExitBtnText':'Exit', // The text for Exit button.
'InvalidPriceText':'Error! Please enter a number for the price.' // The text for Invalid Price Warning.
},
在我看来,这可能就像将 DataURL 和 SaveURL 设置为控制器/模型一样简单......但是我将如何连接数据库,以及我如何知道表将具有哪些字段?希望有人对此有经验。
//This is the save query
if (isset($_POST['dop_booking_calendar'])){
require_once 'opendb.php';
mysql_query('UPDATE schedule SET data="'.$_POST['dop_booking_calendar'].'" WHERE id=1');
}
//this is the load query
require_once 'opendb.php';
$query = mysql_query('SELECT * FROM schedule WHERE id=1');
while ($result=mysql_fetch_array($query)){
echo $result['data'];
}