Advertisement
Guest User

Untitled

a guest
Mar 2nd, 2015
184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. // Grab all of POST and dump it in a db
  2. $form = json_encode($_POST);
  3.  
  4. $blob = json_decode($blob['temp_data']);
  5. $blog = (array) $blob;
  6.  
  7. while($blob = $result->fetch_assoc()) {
  8. $blob = json_decode($blob['temp_data']);
  9. $blog = (array) $blob;
  10.  
  11. // do filtering and create new individual registrations here
  12. $options = array(
  13. "translation" => $blob->{'translation-language'},
  14. "meals" => $blob->{'meals-type'},
  15. "transportation" => $blob->{'transportation-type'},
  16. ...
  17. );
  18. }
  19.  
  20. PHP Fatal error: Call to a member function fetch_assoc() on a non-object
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement