Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2014
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. Route::get('/comment/{data}', function($data){
  2.  
  3.  
  4. if (Request::ajax()) {
  5.  
  6. //echo $data; *i checked here echo prints the content of $data but i cant store it in database. i dont know why its not store by using below code plz help me to find error.
  7.  
  8. $comm = new Data;
  9. $comm->details = Input::get('data');
  10. $comm->save();
  11.  
  12. }
  13. });
  14.  
  15. Route::post('/comment/{data}', function($data){
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement