Guest User

Untitled

a guest
Jul 19th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. var db = firebase.firestore();
  2. function setVote(vals) {
  3. db
  4. .collection("polls")
  5. .doc("votes")
  6. .set(vals)
  7. .then(function(result) {
  8. alert(result);
  9. });
  10. }
  11. setVote({
  12. IPs: [
  13. { ip: "<?php echo $ip->address; ?>" }
  14. ],
  15. manzana: +2
  16. });
Add Comment
Please, Sign In to add comment