Love Fuel?
Donate
About
Forums
Discussions
Login
FuelPHP Forums
Ask your question about FuelPHP in the appropriate forum, or help others by answering their questions.
Orm
Creating default object from empty value
simon333
November 2013
I'm getting the runtime notice of "Creating default object from empty value" when I try the code below. (The notice highlights the line, "
$entry->last_checked = $now_time;") Any ideas on how to fix?
// create generic objects
$now_time = new stdClass();
$entry = new stdClass();
// Assign date
$now_time = date("Y-m-d H:i:s");
// Query
$entry = Model_Table::find($id);
$entry->last_checked = $now_time;
$entry->save();
simon333
November 2013
Think I found the problem. $id was not being correctly set.
Add a Comment
Howdy, Stranger!
It looks like you're new here. If you want to get involved, click one of these buttons!
Sign In
Apply for Membership
Categories
All Discussions
5,088
General
↳ General
3,364
↳ Job Board
13
↳ Installation & Setup
214
Packages
↳ Oil
213
↳ Orm
700
↳ Auth
260
Development
↳ Tips and Tutorials
126
↳ Code share
145
↳ Applications
52
In this Discussion
simon333
November 2013