i could be wrong but it looks like you can bind a value as a table name. have you tried to use table_name
instead of the ?
It looks like you're mixing Laravel db, PDO binding and faultly PHP.
Check out: http://laravel.com/docs/queries#updates
DB::table('blogs')
->where('id', 1)
->update(array('dtime' => 1398082265));
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community