[eluser]kre8ivdesigns[/eluser]
Fatal error: Class name must be a valid object or a string in D:\xampp\htdocs\test.com\application\libraries\datamapper.php on line 2418
And here are my models
Code:
<?php
class Reservation extends DataMapper {
// Insert related models that Reservation can have just one of.
var $has_one = array('client');
// Insert related models that Reservation can have more than one of.
var $has_many = array('days');
// Validation
// Add validation requirements, such as 'required', for your fields.
// --------------------------------------------------------------------
Code:
class Day extends DataMapper {
// Uncomment and edit these two if the class has a model name that
// doesn't convert properly using the inflector_helper.
// var $model = 'day';
// var $table = 'days';
// You can override the database connections with this option
// var $db_params = 'db_config_name';