Love Fuel?    Donate

FuelPHP Forums

Ask your question about FuelPHP in the appropriate forum, or help others by answering their questions.
Creating default object from empty value
  • 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();
  • Think I found the problem.  $id was not being correctly set.

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

In this Discussion