Welcome Guest, Not a member yet? Register   Sign In
Blog Input Form
#5

You probably want to insert the current date/time. This is how to do that:
PHP Code:
$data = array(
 
'date'  => date('Y-m-d H:i:s'),
 
'title' => $this->input->post('title'),
 
'content' => $this->input->post('content'
 ); 

If the date is actually posted by your form, in a field named 'date', then the value is in $this->input->post('date');
Reply


Messages In This Thread
Blog Input Form - by davy_yg - 05-05-2016, 10:00 PM
RE: Blog Input Form - by ChicagoPhil - 05-06-2016, 12:18 AM
RE: Blog Input Form - by keulu - 05-06-2016, 12:55 AM
RE: Blog Input Form - by cartalot - 05-06-2016, 12:10 PM
RE: Blog Input Form - by Wouter60 - 05-06-2016, 01:45 PM



Theme © iAndrew 2016 - Forum software by © MyBB